9 lines
321 B
VimL
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 = {'(':')', '[':']', '{':'}'}
|