From ac069a993e6b4568a7285af34fb3bfc1fc910ea5 Mon Sep 17 00:00:00 2001 From: Nate Kane Date: Mon, 4 Feb 2013 13:10:55 +1000 Subject: [PATCH] Process autocmds after loading the colorscheme. --- plugin/indent_guides.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/indent_guides.vim b/plugin/indent_guides.vim index 642553b..3a83779 100644 --- a/plugin/indent_guides.vim +++ b/plugin/indent_guides.vim @@ -72,5 +72,5 @@ augroup indent_guides autocmd VimEnter * :IndentGuidesEnable endif - autocmd BufEnter,WinEnter * call indent_guides#process_autocmds() + autocmd BufEnter,WinEnter,ColorScheme * call indent_guides#process_autocmds() augroup END