diff options
Diffstat (limited to 'vim/vimrc.symlink')
-rw-r--r-- | vim/vimrc.symlink | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/vim/vimrc.symlink b/vim/vimrc.symlink index 27987ed..47115e6 100644 --- a/vim/vimrc.symlink +++ b/vim/vimrc.symlink @@ -42,8 +42,6 @@ set tabstop=4 shiftwidth=4 expandtab set linebreak set nu -let g:vimtex_latexmk_options = '-pdf -shell-escape' - filetype plugin indent on syntax enable @@ -51,24 +49,26 @@ syntax enable " See: http://vim.wikia.com/wiki/Accessing_the_system_clipboard " Use :cz in visual mode to copy to clipboard, :pz for pasting " x instead of z for primary selection, v for secondary selection -:command -range Cz :silent :<line1>,<line2>w !xsel -i -b -:command -range Cx :silent :<line1>,<line2>w !xsel -i -p -:command -range Cv :silent :<line1>,<line2>w !xsel -i -s -:cabbrev cv Cv -:cabbrev cz Cz -:cabbrev cx Cx +command -range Cz :silent :<line1>,<line2>w !xsel -i -b +command -range Cx :silent :<line1>,<line2>w !xsel -i -p +command -range Cv :silent :<line1>,<line2>w !xsel -i -s +cabbrev cv Cv +cabbrev cz Cz +cabbrev cx Cx -:command -range Pz :silent :r !xsel -o -b -:command -range Px :silent :r !xsel -o -p -:command -range Pv :silent :r !xsel -o -s +command -range Pz :silent :r !xsel -o -b +command -range Px :silent :r !xsel -o -p +command -range Pv :silent :r !xsel -o -s -:cabbrev pz Pz -:cabbrev px Px -:cabbrev pv Pv +cabbrev pz Pz +cabbrev px Px +cabbrev pv Pv set background=light colorscheme morning -:let g:vimtex_latexmk_file_line_error = 0 -:let g:tex_flavor='latex' +let g:vimtex_latexmk_options = '-pdf -shell-escape' +let g:vimtex_latexmk_file_line_error = 0 + +let g:tex_flavor='latex' |