X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/3e043b9780dfffb1873a6ba8e6a015d1e38a24d3..89a4b8e019f6bc3a4e0230ddc17ef0806cefb766:/vim/vimrc diff --git a/vim/vimrc b/vim/vimrc index 7ef205b..bebb15a 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -150,6 +150,7 @@ vnoremap s set showcmd " Show (partial) command in status line. set ruler " show the cursor position all the time set confirm " Ask what to do when closing unsaved documents +set shortmess=filnxtoOI " don't show intro message " editing text {{{1 set backspace=indent,eol,start " allow backspacing over everything in insert mode @@ -304,7 +305,7 @@ let g:tagbar_width = 25 let g:tagbar_iconchars = ['+', '-'] " YouCompleteMe {{{2 -let g:ycm_extra_conf_globlist = ['/mnt/data/src/*'] +let g:ycm_extra_conf_globlist = ['~/src/*'] " vim-json {{{2 let g:vim_json_syntax_conceal = 0 @@ -314,6 +315,10 @@ let g:tex_flavor='latex' let g:Tex_DefaultTargetFormat='pdf' " functions {{{1 +" auto source vimrc when saved +autocmd bufwritepost vimrc source $MYVIMRC +nmap v :tabedit $MYVIMRC + " Convenient command to see the difference between the current buffer and the " file it was loaded from, thus the changes you made. " Only define it when not defined already.