Can I Get Rid of the Foldcolumn? #621
-
|
I've just started using this plugin for my Markdown notes and it seems nice, but I really dislike the behaviour where the foldcolumn is visible in normal mode but disappears in insert mode which makes my document constantly jump two or three columns left and right -- I find this jarring. I've tried all sorts of |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
I don't think this has to do with folds. I'm pretty sure you're referring to the Try adding the following option to your neovim options: Alternatively you can disable signs added by this plugin: require('render-markdown').setup({
sign = { enabled = false },
}) |
Beta Was this translation helpful? Give feedback.
-
|
Yes, that fixes it... thanks for this! |
Beta Was this translation helpful? Give feedback.
I don't think this has to do with folds. I'm pretty sure you're referring to the
statuscolumn/signbehavior.Try adding the following option to your neovim options:
vim.o.signcolumn = 'yes'.Alternatively you can disable signs added by this plugin: