From b3f139c55cb501113a72ed771f87ba4c1332969a Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Thu, 18 Jun 2015 11:44:04 +0200 Subject: Replaced latex-box by vimtex --- nvim/after/ftplugin/tex/mappings.vim | 39 ++++++++++++++++++++++-------------- nvimrc | 21 ++++++++++++++----- 2 files changed, 40 insertions(+), 20 deletions(-) diff --git a/nvim/after/ftplugin/tex/mappings.vim b/nvim/after/ftplugin/tex/mappings.vim index c0f7036..e7dd610 100644 --- a/nvim/after/ftplugin/tex/mappings.vim +++ b/nvim/after/ftplugin/tex/mappings.vim @@ -31,20 +31,29 @@ iabbrev gp \pi iabbrev gw \omega iabbrev dd \d -function! SynctexShow() - let synctex = glob("*.synctex.gz") - if strlen(synctex) == 0 - echom "no synctex file found" - else - let pdffile = substitute(synctex,"synctex.gz","pdf","") - let execline = printf(":!zathura --synctex-forward %d:%d:%s %s", line('.'), col('.'), shellescape(bufname("%")), shellescape(pdffile)) - exec execline - end -endfunction +" function! SynctexShow() +" let synctex = glob("*.synctex.gz") +" if strlen(synctex) == 0 +" echom "no synctex file found" +" else +" let pdffile = substitute(synctex,"synctex.gz","pdf","") +" let execline = printf(":!zathura --synctex-forward %d:%d:%s %s", line('.'), col('.'), shellescape(bufname("%")), shellescape(pdffile)) +" exec execline +" end +" endfunction -nnoremap a :call SynctexShow() -nnoremap i :Latexmk -nnoremap e :LatexErrors -nnoremap o :LatexView -noremap k :LatexmkStop:LatexmkClean +" nnoremap a :call SynctexShow() +" nnoremap i :Latexmk +" nnoremap e :LatexErrors +" nnoremap o :LatexView +" noremap k :LatexmkStop:LatexmkClean +" nnoremap h :split header.sty + + +nnoremap i :VimtexCompile +nnoremap e :VimtexErrors +nnoremap o :VimtexView +nnoremap k :VimtexStop:VimtexClean +nnoremap t :VimtexTocToggle +nnoremap h :split header.sty nnoremap h :split header.sty diff --git a/nvimrc b/nvimrc index 2a481d6..301497f 100644 --- a/nvimrc +++ b/nvimrc @@ -22,7 +22,8 @@ Plug 'junegunn/rainbow_parentheses.vim' Plug 'justinmk/vim-sneak' Plug 'kassio/neoterm', { 'on' : 'T' } Plug 'kien/ctrlp.vim' -Plug 'LaTeX-Box-Team/latex-box', { 'for' : 'tex' } +" Plug 'LaTeX-Box-Team/latex-box', { 'for' : 'tex' } +Plug 'lervag/vimtex', { 'for' : 'tex' } Plug 'majutsushi/tagbar' Plug 'mileszs/ack.vim', { 'on' : 'Ack' } Plug 'rdnetto/YCM-Generator', { 'branch' : 'stable' , 'on' : 'YcmGenerateConfig' } @@ -51,10 +52,20 @@ Plug 'xolox/vim-notes', { 'on' : 'Note' } call plug#end() "" Plugins options -let g:LatexBox_fold_automatic=0 -let g:LatexBox_latexmk_preview_continuously=1 -let g:LatexBox_quickfix=2 -let g:LatexBox_viewer='zathura' +" let g:LatexBox_fold_automatic=0 +" let g:LatexBox_latexmk_preview_continuously=1 +" let g:LatexBox_quickfix=2 +" let g:LatexBox_viewer='zathura' +let g:vimtex_fold_enabled=0 +let g:vimtex_view_method='zathura' +let g:vimtex_latexmk_continuous=1 +let g:vimtex_quickfix_mode=0 +if !exists('g:ycm_semantic_triggers') + let g:ycm_semantic_triggers = {} +endif +let g:ycm_semantic_triggers.tex = [ + \ 're!\\[A-Za-z]*(ref|cite)[A-Za-z]*([^]]*])?{([^}]*, ?)*' + \ ] let g:UltiSnipsEditSplit="horizontal" let g:UltiSnipsExpandTrigger="" -- cgit v1.2.3