diff options
author | Cody Hiar <codyfh@gmail.com> | 2017-02-01 09:28:44 -0700 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2017-02-01 09:28:44 -0700 |
commit | e80d566e32b7f34788e30d866a0f06031e6a04b0 (patch) | |
tree | a7e26703c5d1f401c822b4014ea132d949f41e02 /plugin/vim-options.vim | |
parent | 2997c901135ad6e8d9e2bda988d39a7d83df68ef (diff) |
Didn't notice that indent lines weren't starting by default on neovim,
Diffstat (limited to 'plugin/vim-options.vim')
-rw-r--r-- | plugin/vim-options.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugin/vim-options.vim b/plugin/vim-options.vim index cd40cf0..b897c43 100644 --- a/plugin/vim-options.vim +++ b/plugin/vim-options.vim @@ -245,6 +245,7 @@ if !empty(glob(EditorDir.'/plugged/vim-indent-guides/plugin/indent_guides.vim')) let g:indent_guides_guide_size = 1 autocmd VimEnter,Colorscheme * :hi IndentGuidesOdd ctermbg=0 autocmd VimEnter,Colorscheme * :hi IndentGuidesEven ctermbg=0 + autocmd VimEnter,Colorscheme * :IndentGuidesEnable endif "----------------------------------------------------------------------------------------------------------------------- |