.vimrc

branch
mhoward-lt
changeset 84
04dfcc1f5eb6
parent 83
29dc36168071
child 85
80df41e698be
equal deleted inserted replaced
77:fc73a8086da5 84:04dfcc1f5eb6
60 Plugin 'Shougo/vimshell.vim' 60 Plugin 'Shougo/vimshell.vim'
61 Plugin 'sjl/gundo.vim' 61 Plugin 'sjl/gundo.vim'
62 Plugin 'majutsushi/tagbar' 62 Plugin 'majutsushi/tagbar'
63 Plugin 'godlygeek/tabular' 63 Plugin 'godlygeek/tabular'
64 Plugin 'tomtom/tcomment_vim' 64 Plugin 'tomtom/tcomment_vim'
65 Plugin 'tpope/vim-unimpaired'
66 Plugin 'tpope/vim-endwise'
65 67
66 Plugin 'danchoi/ri.vim' 68 Plugin 'danchoi/ri.vim'
67 Plugin 'tpope/vim-fugitive' 69 Plugin 'tpope/vim-fugitive'
68 Plugin 'ludovicchabant/vim-lawrencium' 70 Plugin 'ludovicchabant/vim-lawrencium'
69 71
129 131
130 set autoindent 132 set autoindent
131 set expandtab 133 set expandtab
132 set shiftwidth=2 134 set shiftwidth=2
133 set softtabstop=2 135 set softtabstop=2
136
137 " apparently you have to go out of your way to make this stick
138 autocmd BufNewFile,BufRead * setlocal formatoptions-=ro
134 139
135 set backspace=indent,eol,start 140 set backspace=indent,eol,start
136 141
137 "set nu 142 "set nu
138 set scrolloff=2 143 set scrolloff=2
269 \ 'deffile' : '$MYVIM/ctags/perl.cnf' 274 \ 'deffile' : '$MYVIM/ctags/perl.cnf'
270 \ } 275 \ }
271 276
272 277
273 " > Unite 278 " > Unite
274 call unite#filters#matcher_default#use(['matcher_fuzzy']) 279 " call unite#filters#matcher_default#use(['matcher_fuzzy'])
275 call unite#filters#sorter_default#use(['sorter_rank']) 280 call unite#filters#sorter_default#use(['sorter_rank'])
276 let g:unite_source_history_yank_enable = 1 281 " let g:unite_source_history_yank_enable = 1
277 282
278 if executable('ag') 283 if executable('ag')
279 let g:unite_source_grep_command = 'ag' 284 let g:unite_source_grep_command = 'ag'
280 let g:unite_source_grep_default_opts = '--nogroup --nocolor --column' 285 let g:unite_source_grep_default_opts = '--nogroup --nocolor --column'
281 let g:unite_source_grep_recursive_opt = '' 286 let g:unite_source_grep_recursive_opt = ''

mercurial