summary refs log tree commit diff
path: root/.vim/after/ftplugin/tex.vim
diff options
context:
space:
mode:
authorRobert Günzler <r@gnzler.io>2021-02-20 21:27:26 +0100
committerRobert Günzler <r@gnzler.io>2021-04-26 02:09:43 +0200
commit1996ef15613f2d4773017128bba1a719a1b63a19 (patch)
treeaa291b56947f0f710c96c62758990de3b2939bba /.vim/after/ftplugin/tex.vim
parent30451238df36d238fea816f01ca987853c6562a5 (diff)
Move to lua based vimrc
Diffstat (limited to '.vim/after/ftplugin/tex.vim')
-rw-r--r--.vim/after/ftplugin/tex.vim23
1 files changed, 0 insertions, 23 deletions
diff --git a/.vim/after/ftplugin/tex.vim b/.vim/after/ftplugin/tex.vim
deleted file mode 100644
index 88d4f11..0000000
--- a/.vim/after/ftplugin/tex.vim
+++ /dev/null
@@ -1,23 +0,0 @@
-
-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