-
hey, I've been writing some notes in neorg and i've found some odd behaviour and I couldn't find any video regarding what the correct behaviour for those should be. This is what words in bold, inline code and other specifiers look https://imgur.com/8lr0R6t. I'm using the unstable branch and i've loaded the concealer as default. is the presence of the bold delimiters normal? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi! Yeah, their presence is normal... kind of. By default they will be shown because of your conceal level. You want to set this to something higher than 0 (preferably 2, see In vimscript: set conceallevel=2 In lua: vim.opt.conceallevel = 2 Related topic: #135 (comment). Hope that helps! :) |
Beta Was this translation helpful? Give feedback.
Hi!
Yeah, their presence is normal... kind of. By default they will be shown because of your conceal level. You want to set this to something higher than 0 (preferably 2, see
:h conceallevel
for more info on that).In vimscript:
In lua:
Related topic: #135 (comment).
When it comes to maths no special concealing will be done for that (no highlighting will be applied to it either just yet). I'm working on that in our treesitter implementation to support it.
Hope that helps! :)