From f86dcbc94a6dd69b0128c2f819cdaa5f795d7339 Mon Sep 17 00:00:00 2001 From: Thomas Vanbesien Date: Tue, 9 Jun 2026 17:22:27 +0200 Subject: 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. --- .config/nvim/plugin/50-markdown.lua | 1 + 1 file changed, 1 insertion(+) (limited to '.config') 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 } }, }) -- cgit v1.3.1