]> git.rmz.io Git - dotfiles.git/blobdiff - vim/vimrc
mutt: add some more settings
[dotfiles.git] / vim / vimrc
index 7ef205bc2b558ac33bf283cc546f07050bb4da52..788e3df0ea1cb11737f1575e9ba0e8d2121571bc 100644 (file)
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -150,6 +150,7 @@ vnoremap <MiddleMouse> s<MiddleMouse>
 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
@@ -272,6 +273,8 @@ nmap <silent> <C-S-M> <Plug>GoldenViewPrevious
 nnoremap <F7> :GundoToggle<CR>
 " fugitive {{{2
 nmap <silent> <leader>dd :tab split \| Gdiff \| wincmd h<CR>
+" delete fugitive buffers when closed
+autocmd BufReadPost fugitive://* set bufhidden=delete
 
 " NERDTree {{{2
 " open/close NERDTree with \e
@@ -304,7 +307,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 +317,10 @@ let g:tex_flavor='latex'
 let g:Tex_DefaultTargetFormat='pdf'
 
 " functions {{{1
+" auto source vimrc when saved
+autocmd bufwritepost vimrc source $MYVIMRC
+nmap <leader>v :tabedit $MYVIMRC<CR>
+
 " 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.