From c430bf66d2ac5b7aa08e8571b7a86c7d01685b18 Mon Sep 17 00:00:00 2001 From: Sonny Bakker Date: Wed, 16 Sep 2026 11:29:45 +0200 Subject: [PATCH] Set conceallevel --- templates/nvim/lua/options.lua.j2 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/nvim/lua/options.lua.j2 b/templates/nvim/lua/options.lua.j2 index fe35a80..f10c818 100644 --- a/templates/nvim/lua/options.lua.j2 +++ b/templates/nvim/lua/options.lua.j2 @@ -64,3 +64,6 @@ vim.opt.mouse = '' -- python interpreter vim.g.python3_host_prog = '/usr/bin/python3' + +-- hide concealed text completely unless it has a custom replacement character defined +vim.o.conceallevel = 2