summaryrefslogtreecommitdiff
path: root/.vim/after/ftplugin/tex.vim
blob: 0d3f84b67e2b0095ea3876856a9e15d6eb359066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
" disable annoying {{ and (( completion
call IMAP('{{', '{{', 'tex')
call IMAP('((', '((', 'tex')

" add our own macros
call IMAP('EFR', "\\begin{frame}{<++>}\<CR><++>\<CR>\\end{frame}<++>", "tex")

" ignore some more stuff
let g:Tex_IgnoredWarnings.="\nFont shape"
let g:Tex_IgnoredWarnings.="\nFloat too large"
let g:Tex_IgnoredWarnings.="\nUserWarning"
let g:Tex_IgnoreLevel+=3