From 5950845f9656d68a1b735fd46e63e59194437630 Mon Sep 17 00:00:00 2001 From: NagatoPain Date: Sat, 15 Dec 2012 13:53:14 +0800 Subject: [PATCH] change default indentline --- after/plugin/indentLine.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/after/plugin/indentLine.vim b/after/plugin/indentLine.vim index 08745eb..b7c66df 100644 --- a/after/plugin/indentLine.vim +++ b/after/plugin/indentLine.vim @@ -24,7 +24,8 @@ endfunction function! SetIndentLine() for i in range(&shiftwidth+1, 100, &shiftwidth) - exe 'syn match IndentLine /\(^\s\+\)\@<=\%'.i.'v / containedin=ALL conceal cchar=|' + " | ┆ │ + exe 'syn match IndentLine /\(^\s\+\)\@<=\%'.i.'v / containedin=ALL conceal cchar=┆' endfor endfunction