From 4bb854c54dc03b6962021c205c6402f061f9c0f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sascha=20L=C3=BCdecke?= Date: Mon, 30 Jun 2025 08:58:00 +0200 Subject: [PATCH] Fixing termcursor to cursor style in terminals --- lua/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/options.lua b/lua/options.lua index 86ba92f..b685494 100644 --- a/lua/options.lua +++ b/lua/options.lua @@ -21,7 +21,7 @@ vim.opt.number = true -- show absolute number vim.opt.relativenumber = false -- add numbers to each line on the left side vim.opt.cursorline = true -- highlight cursor line underneath the cursor horizontally vim.opt.guicursor = "" .. -- cursor highlight group needs to be Cursor to have lunaperche have a proper light cursor - "n-v-c-sm:block-Cursor,i-ci-ve:ver25-Cursor,r-cr-o:hor20,t:block-blinkon500-blinkoff500-TermCursor" + "n-v-c-sm:block-Cursor,i-ci-ve:ver25-Cursor,r-cr-o:hor20,t:block-blinkon500-blinkoff500-Cursor" vim.opt.splitbelow = true -- open new vertical split bottom vim.opt.splitright = true -- open new horizontal splits right vim.opt.termguicolors = true -- enable 24-bit RGB color in the TUI