diff options
| author | Robert Günzler <r@gnzler.io> | 2020-12-07 19:09:32 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2021-01-21 19:39:11 +0100 |
| commit | 9b8005439ac351ded8f6286aefa2378d25d7add5 (patch) | |
| tree | e2801972bc5bfb3960bbb1233752274bd94e11db /.vim/after/ftplugin/tex.vim | |
| parent | c3d57d8acc9446de9fded87081939706998fb033 (diff) | |
vim: update after/ftplugin/*
Diffstat (limited to '.vim/after/ftplugin/tex.vim')
| -rw-r--r-- | .vim/after/ftplugin/tex.vim | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.vim/after/ftplugin/tex.vim b/.vim/after/ftplugin/tex.vim index e69de29..88d4f11 100644 --- a/.vim/after/ftplugin/tex.vim +++ b/.vim/after/ftplugin/tex.vim @@ -0,0 +1,23 @@ + +nnoremap <leader>c :call vimtex#compiler#compile()<cr> +" augroup Vimtex +" au! +" au BufWritePost * silent call vimtex#compiler#compile() +" augroup END + +" if exists('g:loaded_neomake') +" let g:neomake_tex_tectonic_maker = { +" \ 'exe': 'tectonic', +" \ 'append_file': 1, +" \ 'errorformat': +" \ '%Eerror: something bad happened inside TeX; its output follows:,'. +" \ '%C^[=]+$,'. +" \ '%C(%f,'. +" \ '%C.*,'. +" \ '%C! %m,'. +" \ '%Cl.%l %s,'. +" \ '%C^[=]+$,'. +" \ '%-Zcaused by: %s,' +" \ } +" let g:neomake_tex_enabled_makers = ['tectonic'] +" endif |