diff options
author | Adrian Kummerlaender | 2017-05-31 21:31:55 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2017-05-31 21:31:55 +0200 |
commit | 72a9030c26b537976e1641731835caabb5a65700 (patch) | |
tree | dc158a63ce046707bc228f34f90567ff4db30b9c | |
parent | ca3ba5fcba4fc3a0efdc89304727870301bb359c (diff) | |
download | dotfiles-72a9030c26b537976e1641731835caabb5a65700.tar dotfiles-72a9030c26b537976e1641731835caabb5a65700.tar.gz dotfiles-72a9030c26b537976e1641731835caabb5a65700.tar.bz2 dotfiles-72a9030c26b537976e1641731835caabb5a65700.tar.lz dotfiles-72a9030c26b537976e1641731835caabb5a65700.tar.xz dotfiles-72a9030c26b537976e1641731835caabb5a65700.tar.zst dotfiles-72a9030c26b537976e1641731835caabb5a65700.zip |
Add indentation guides to `vim`
-rw-r--r-- | vim/.vimrc | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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> |