-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindentline.vim
26 lines (26 loc) · 1.27 KB
/
indentline.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
"set list lcs=tab:\│\
"let g:indentLine_char = '│'
"
"let g:indent_blankline_show_first_indent_level = v:false
let g:indent_blankline_char = '│'
let g:indent_blankline_char_list = ['│', '│', '│', '│']
let g:indent_blankline_filetype_exclude = ['help']
let g:indent_blankline_buftype_exclude = ['terminal']
let g:indent_blankline_show_first_indent_level = v:true
highlight IndentBlanklineChar guifg=#404040 gui=nocombine
"let g:indent_blankline_space_char = ' '
let g:indent_blankline_use_treesitter = v:true
"let g:indent_blankline_show_end_of_line = v:true
let g:indent_blankline_show_current_context = v:false
let g:indent_blankline_context_highlight = 'Function'
let g:indent_blankline_context_highlight = [
\ 'class',
\ 'function',
\ 'method',
\ ]
let g:indent_blankline_show_trailing_blankline_indent = v:false
let g:indent_blankline_char_highlight_list = [
\ 'Function',
\ 'Conditional',
\ 'Special',
\ 'Underlined']