forked from jasoncodes/vimfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin_config.vim
36 lines (29 loc) · 864 Bytes
/
plugin_config.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
" NERDTree
let g:NERDTreeHijackNetrw = 0
let g:loaded_netrw = 1 " Disable netrw
let g:loaded_netrwPlugin = 1 " Disable netrw
let g:NERDTreeShowLineNumbers = 0
let g:NERDTreeMinimalUI = 1 " Disable help message
let g:NERDTreeDirArrows = 1
let g:NERDTreeWinPos = 'right'
" Rails
let g:rails_menu = 0
" Syntastic
let g:syntastic_enable_signs = 1
let g:syntastic_auto_loc_list = 0
let g:syntastic_disabled_filetypes = ['cucumber']
" Command-T
let g:CommandTMaxFiles = 20000
let g:CommandTMinHeight = 10
let g:CommandTMaxHeight = 10
let g:CommandTMatchWindowAtTop = 0
" Detect Indent
let g:detectindent_preferred_expandtab = 1
let g:detectindent_preferred_indent = 2
" Indent Guides
let g:indent_guides_auto_colors = 0
let g:indent_guides_enable_on_vim_startup = 1
" NERDCommenter
let g:NERDSpaceDelims = 1
" EasyMotion
let g:EasyMotion_leader_key = '<Leader>e'