From 0b8cabcf5a77590dfa7ca670cd864f5841054d32 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Sat, 3 Jun 2023 14:53:47 -0500 Subject: [PATCH] refactor(nvim): do not conceal cursor --- dots/.config/nvim/lua/core/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/nvim/lua/core/options.lua b/dots/.config/nvim/lua/core/options.lua index 10ff72e4..cdf59b45 100755 --- a/dots/.config/nvim/lua/core/options.lua +++ b/dots/.config/nvim/lua/core/options.lua @@ -70,7 +70,7 @@ M.setup = function() -- Concealment for nicer rendering opt.conceallevel = 2 - opt.concealcursor = "ic" + opt.concealcursor = "" -- Cursor line highlight opt.cursorline = true