Files
nvim/latex.vim
2021-03-30 20:01:47 +02:00

9 lines
321 B
VimL

" Settings for using LaTeX
set grepprg=grep\ -nH\ $*
let g:tex_flavor='latex'
set iskeyword+=:
autocmd BufRead *.tex set tw=100
autocmd BufRead *.tex set spell
autocmd BufRead,BufEnter *.tex map <F9> :w <CR> :!/usr/bin/waf configure build <CR>
autocmd BufRead,BufEnter *.tex let b:AutoPairs = {'(':')', '[':']', '{':'}'}