From 1012ee040656dcbced609c0718f2e125bd523e19 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Tue, 1 Nov 2022 17:24:04 -0500 Subject: [PATCH] feat(nvim): disable conceal in markdown files --- .../primary/config/after/ftplugin/markdown.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/dots/.nvim-environments/primary/config/after/ftplugin/markdown.lua b/dots/.nvim-environments/primary/config/after/ftplugin/markdown.lua index cc77bdec..0cd3ebd7 100644 --- a/dots/.nvim-environments/primary/config/after/ftplugin/markdown.lua +++ b/dots/.nvim-environments/primary/config/after/ftplugin/markdown.lua @@ -1,3 +1,4 @@ vim.opt_local.tabstop = 2 vim.opt_local.shiftwidth = 2 vim.opt_local.textwidth = 0 +vim.opt_local.conceallevel = 0