diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-06-09 17:22:27 +0200 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-06-09 17:22:56 +0200 |
| commit | f86dcbc94a6dd69b0128c2f819cdaa5f795d7339 (patch) | |
| tree | 00189266f5693d6edad4072197ef28d324e36be7 /.config/nvim/plugin/50-markdown.lua | |
| parent | c1e42c2ba35c0a7e796e121bbff3e46616a2093c (diff) | |
| download | dotfiles-f86dcbc94a6dd69b0128c2f819cdaa5f795d7339.tar.gz dotfiles-f86dcbc94a6dd69b0128c2f819cdaa5f795d7339.zip | |
misc(nvim): render  , < etc in markdown files
In floating windows with python documentation there is nbsp characters
used for formatting. But with the default conceallevel they are
invisible. This commit reduces the conceallevel so that they become
visible.
Diffstat (limited to '.config/nvim/plugin/50-markdown.lua')
| -rw-r--r-- | .config/nvim/plugin/50-markdown.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.config/nvim/plugin/50-markdown.lua b/.config/nvim/plugin/50-markdown.lua index 6b59b27..a785aaa 100644 --- a/.config/nvim/plugin/50-markdown.lua +++ b/.config/nvim/plugin/50-markdown.lua @@ -16,4 +16,5 @@ require("render-markdown").setup({ heading = { width = "block", min_width = markdown_textwidth }, code = { position = "center", sign = false, width = "block", min_width = markdown_textwidth / 2 }, dash = { width = markdown_textwidth }, + win_options = { conceallevel = { rendered = 2 } }, }) |
