Yggdroot / indentLine

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

Doesn't show the default info in neovim #315

Closed SKrPl closed 3 years ago

SKrPl commented 4 years ago

Plug 'Yggdroot/indentLine'

call plug#end()



* Current behaviour: It doesn't show neovim info when stating neovim.
![Screenshot from 2020-06-13 02-30-44](https://user-images.githubusercontent.com/12163892/84545988-f1c38180-ad1d-11ea-9ab5-2481df943f54.png)

* Expected behaviour: It should show the info when starting neovim, this is the output after commenting out `Plug 'Yggdroot/indentLine'`.
![Screenshot from 2020-06-13 02-32-33](https://user-images.githubusercontent.com/12163892/84546099-28999780-ad1e-11ea-97b8-bcd59c56c062.png)
ndavidpsi commented 3 years ago

@SKrPl have you figured it out? I have the same issue

Yggdroot commented 3 years ago

Update the plugin, then add this line in vimrc:

autocmd VimEnter * if bufname('%') == '' | IndentLinesDisable | endif
ndavidpsi commented 3 years ago

Solved it for me. Thanks!!