Nvim-tree.lua: Is there a way to remove this gray vertical bar?

Created on 31 Mar 2021  路  5Comments  路  Source: kyazdani42/nvim-tree.lua

image
I have seen some screenshots of other users and this does not appear to them. I use Windows.

Most helpful comment

thanks @cloggier it is indeed :)

All 5 comments

It's signcolumn most likely. You can use after/ftplugin/ or autocmd FileType NvimTree localset signcolumn=<no|auto> to turn it off for NvimTree buffers only. Or change your global setting.

Thanks

thanks @cloggier it is indeed :)

It's signcolumn most likely. You can use after/ftplugin/ or autocmd FileType NvimTree localset signcolumn=<no|auto> to turn it off for NvimTree buffers only. Or change your global setting.

Write this autocmd FileType NvimTree localset signcolumn=no in my .vimrc should be work?, sorry, i am a beginner.

@gmr458 Yes, please have a look here, it will shed some light onto what it does: https://learnvimscriptthehardway.stevelosh.com/chapters/12.html

Also it's best to wrap autocmds with augroup: https://learnvimscriptthehardway.stevelosh.com/chapters/14.html

Was this page helpful?
0 / 5 - 0 ratings

Related issues

stsewd picture stsewd  路  9Comments

seblj picture seblj  路  6Comments

afonsocarlos picture afonsocarlos  路  3Comments

peach-lasagna picture peach-lasagna  路  5Comments

cloggier picture cloggier  路  8Comments