Initial commit

This commit is contained in:
2017-05-31 21:59:58 +02:00
commit f3f75e949c
2 changed files with 15 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
" Vim compiler file
" Compiler: pdf creator out of LaTeX files using rubber
if exists("current_compiler")
finish
endif
let current_compiler = "rubber"
CompilerSet makeprg=rubber\ -d\ %
"CompilerSet efm=%f:%l:\ [%t]%m,%f:%l:%m
+5
View File
@@ -0,0 +1,5 @@
compiler rubber
if exists('g:rubber_make_on_save') && g:rubber_make_on_save
autocmd BufWritePost *.tex :make
endif