From a1d06f9d3c34dbb5507ea6afa1c1789e470e7ce9 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Thu, 2 May 2013 13:52:28 +0900 Subject: [PATCH] Calls InitColor on BufNewFile --- after/plugin/indentLine.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/after/plugin/indentLine.vim b/after/plugin/indentLine.vim index eab4cec..2fa68cf 100644 --- a/after/plugin/indentLine.vim +++ b/after/plugin/indentLine.vim @@ -164,7 +164,7 @@ endfunction "{{{1 commands autocmd BufWinEnter * call Setup() -autocmd BufRead,ColorScheme * call InitColor() +autocmd BufRead,BufNewFile,ColorScheme * call InitColor() command! -nargs=? IndentLinesReset call ResetWidth() command! IndentLinesToggle call IndentLinesToggle()