aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vim/.vimrc5
1 files changed, 5 insertions, 0 deletions
diff --git a/vim/.vimrc b/vim/.vimrc
index 2da6580..2341546 100644
--- a/vim/.vimrc
+++ b/vim/.vimrc
@@ -17,6 +17,7 @@ Plug 'Chiel92/vim-autoformat' " autoformatting integration
Plug 'majutsushi/tagbar' " display ctag tree in sidebar
Plug 'godlygeek/tabular' " text alignment helper
Plug 'MarcWeber/vim-addon-local-vimrc' " folder specific vim configuration
+Plug 'nathanaelkane/vim-indent-guides' " pretty indentations
call plug#end()
@@ -133,6 +134,10 @@ nnoremap <F7> :set cursorline!<CR>
nnoremap <F8> :TagbarToggle<CR>
nnoremap <F12> :Goyo<CR>
+" indent guides
+let g:indent_guides_auto_colors = 1
+let g:indent_guides_space_guides = 0
+
" ctrlp file opener
nnoremap <c-t> :CtrlPBufTag<CR>
nnoremap <a-t> :CtrlPTag<CR>