Yggdroot / indentLine

A vim plugin to display the indention levels with thin vertical lines
MIT License
4.15k stars 229 forks source link

Conflict with NERDTreeToggle when leading space is enabled. #335

Closed nicktify closed 3 years ago

nicktify commented 3 years ago

When g:indentLine_leadingSpaceEnabled is set to 0 (by default), NERDTreeToggle works perfectly

Screenshot-from-2020-12-01-22-52-15 Screenshot-from-2020-12-01-22-52-40

But when g:indentLine_leadingSpaceEnabled is set to 1, NERDTreeToggle don't show the indentation at all

Screenshot-from-2020-12-01-22-53-36 Screenshot-from-2020-12-01-22-53-13

Yggdroot commented 3 years ago

autocmd FileType nerdtree setlocal conceallevel=2

or

let g:indentLine_fileTypeExclude = ['nerdtree']

nicktify commented 3 years ago

It works!