Added project configuration
+ added support for .project.vim config files * fixed minor issues
This commit is contained in:
parent
60f9dffbdd
commit
df4e455fb6
@ -1,4 +1,5 @@
|
||||
set colorcolumn=81
|
||||
set textwidth=80
|
||||
set cino=N-s
|
||||
|
||||
let g:cpp_attributes_highlight = 1
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
set colorcolumn=81
|
||||
set textwidth=80
|
||||
set cino=N-s
|
||||
|
||||
let g:cpp_attributes_highlight = 1
|
||||
|
||||
@ -12,5 +12,18 @@ let g:vimtex_fold_enable = 1
|
||||
let g:tex_flavor = 'latex'
|
||||
let g:vimtex_view_general_viewer = 'evince'
|
||||
let g:vimtex_compiler_method = 'latexmk'
|
||||
let g:vimtex_compiler_latexmk['options'] = '-shell-escape'
|
||||
let g:vimtex_compiler_latexmk = {
|
||||
\ 'build_dir' : 'bin',
|
||||
\ 'callback' : 1,
|
||||
\ 'continuous' : 1,
|
||||
\ 'executable' : 'latexmk',
|
||||
\ 'hooks' : [],
|
||||
\ 'options' : [
|
||||
\ '-verbose',
|
||||
\ '-file-line-error',
|
||||
\ '-synctex=1',
|
||||
\ '-interaction=nonstopmode',
|
||||
\ '-shell-escape',
|
||||
\ ],
|
||||
\}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user