Parcourir la Source

~/.vimrc: plugins: git changes, multiple cursors.

git-gutter displays the line status beside the line number and multiple
cursors makes simple renames in one file much easier.
Lucas Stadler 12 ans auparavant
Parent
commit
bf92a06a7d
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. 3 1
      .vimrc

+ 3 - 1
.vimrc

@ -14,6 +14,8 @@ Bundle 'bitc/vim-hdevtools'
14 14
au FileType haskell noremap <buffer> \ht :HdevtoolsType<CR>
15 15
au FileType haskell noremap <buffer> \hc :HdevtoolsClear<CR>
16 16
Bundle 'tpope/vim-foreplay'
17
Bundle 'airblade/vim-gitgutter'
18
Bundle 'terryma/vim-multiple-cursors'
17 19
18 20
" Have syntax highlighting and non-vi features
19 21
syntax on
@ -170,7 +172,7 @@ map <Space> :NERDTree<CR>
170 172
map <c-b> :make<CR> " build
171 173
" Fuzzy finding (http://thechangelog.com/post/15573551543)
172 174
noremap <C-e> :CtrlP<CR>
173
noremap <C-p> :tabnew<CR>:CtrlP<CR>
175
"noremap <C-p> :tabnew<CR>:CtrlP<CR>
174 176
map <c-f> :!ack
175 177
nmap <c-a> :w<CR>
176 178
map <Leader>t :TagbarToggle<CR>