1

Update generated neovim config

This commit is contained in:
2024-08-15 14:28:54 +02:00
parent 07409c223d
commit 25cfcf2941
3809 changed files with 351157 additions and 0 deletions

View File

@ -0,0 +1,7 @@
\documentclass{article}
\usepackage[backend=biber,style=authoryear]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
Test
\end{document}

View File

@ -0,0 +1,18 @@
set nocompatible
let &rtp = '../..,' . &rtp
filetype plugin on
nnoremap q :qall!<cr>
let g:vimtex_cache_root = '.'
let g:vimtex_cache_persistent = 0
silent edit test_apacite.tex
if empty($INMAKE) | finish | endif
let s:candidates = vimtex#test#completion('\cite<e.g.>{', '')
call assert_true(len(s:candidates) > 0)
call vimtex#test#finished()