From 157a44e011d5418a2ad89f4bb5d1d41301968098 Mon Sep 17 00:00:00 2001 From: 0x4D5352 <67082011+0x4D5352@users.noreply.github.com> Date: Fri, 20 Dec 2024 13:41:02 -0600 Subject: [PATCH] update conceallevel for obsidian.nvim --- init.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.lua b/init.lua index e967b5a0..9958c95c 100644 --- a/init.lua +++ b/init.lua @@ -71,6 +71,9 @@ vim.opt.cursorline = true -- Minimal number of screen lines to keep above and below the cursor. vim.opt.scrolloff = 10 +-- adjust conceallevel to work with obsidian.nvim +vim.opt.conceallevel = 1 + -- [[ Basic Keymaps ]] -- See `:help vim.keymap.set()`