From 6724d4505148e6fce11ac683ddd9b190479cd96d Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Thu, 15 Feb 2024 22:14:02 +0100 Subject: [PATCH] vim: enable conceal for markdown files --- config/nvim/after/ftplugin/markdown.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/config/nvim/after/ftplugin/markdown.lua b/config/nvim/after/ftplugin/markdown.lua index b1c40fb..d1c96c3 100644 --- a/config/nvim/after/ftplugin/markdown.lua +++ b/config/nvim/after/ftplugin/markdown.lua @@ -1,4 +1,5 @@ vim.bo.tabstop = 2 +vim.wo.conceallevel = 2 vim.opt.formatoptions:append('t') -- wrap text on 'textwidth' vim.opt.spell = true -- turn on spell checking