
I have seen some screenshots of other users and this does not appear to them. I use Windows.
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
signcolumnmost likely. You can useafter/ftplugin/orautocmd 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
Most helpful comment
thanks @cloggier it is indeed :)