From ef1ed4b7d1017c655ee801531c7f9d02b2a6b2a7 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Fri, 15 Apr 2022 14:05:14 +0530 Subject: [PATCH] nvim: autocmd: On exit set cursor shape to horizontal & not vertical We specify an underline cursor shape in terminal settings. This actually fixes 5c6eebf where we just copied the settings from the referenced issue but did not actually fix it. --- nvim/.config/nvim/lua/autocmd.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvim/.config/nvim/lua/autocmd.lua b/nvim/.config/nvim/lua/autocmd.lua index f1f419f..da6d2a8 100644 --- a/nvim/.config/nvim/lua/autocmd.lua +++ b/nvim/.config/nvim/lua/autocmd.lua @@ -40,7 +40,7 @@ local aucmd_dict = { { group = "custom_group", pattern = "*", - command = "set guicursor=a:ver1-blinkon0" + command = "set guicursor=a:hor1-blinkon0" } } }