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