X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/847f32c0576819eac9eb187e5caddda00ddaa779..74653f28d2bf2ed1ccc5a8b68654cd882cbeea62:/vim/vimrc diff --git a/vim/vimrc b/vim/vimrc index 8a89f32..6fe4aec 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -36,6 +36,7 @@ Plugin 'sgeb/vim-diff-fold' Plugin 'shougo/unite.vim' Plugin 'shougo/vimproc.vim' Plugin 'sjl/gundo.vim' +Plugin 'thinca/vim-qfreplace' Plugin 'tomtom/tcomment_vim' Plugin 'tpope/vim-abolish' Plugin 'tpope/vim-endwise' @@ -331,6 +332,11 @@ augroup END command! NoAutoChecktime let b:autochecktime=0 command! ToggleAutoChecktime let b:autochecktime=!get(b:, 'autochecktime', 0) | echom "b:autochecktime:" b:autochecktime +augroup terminal + au! + au TerminalOpen * if &buftype == 'terminal' | setlocal bufhidden=hide | endif +augroup END + " bindings {{{1 " allow both and \ to be @@ -600,7 +606,8 @@ let g:tagbar_width = 25 let g:tagbar_iconchars = ['+', '-'] " tcomments {{{2 -let g:tcommentTextObjectInlineComment = 'gic' +let g:tcomment_textobject_inlinecomment = 'gic' +let g:tcomment#filetype#guess = 0 " ultisnips {{{2 let g:UltiSnipsEditSplit = 'vertical'