Initial commit

This commit is contained in:
2021-03-30 20:01:47 +02:00
commit ddaecabe97
15 changed files with 212 additions and 0 deletions

8
latex.vim Normal file
View File

@@ -0,0 +1,8 @@
" 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 = {'(':')', '[':']', '{':'}'}