fix: set cursor to static color

This commit is contained in:
2025-05-06 06:33:34 +02:00
parent e6f8cc2efb
commit 5c838ac63a
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -77,6 +77,7 @@ vim.opt.autoread = true
-- causing "Press ENTER to continue" messages for small messages.
vim.opt.jumpoptions = {'stack', 'view', 'clean'}
vim.opt.updatetime = 100
vim.opt.guicursor:append("a:Cursor")
function _G._status_line_git()
local status = vim.b.gitsigns_status_dict
+1
View File
@@ -7,6 +7,7 @@ return {
local c = require("onedark.colors")
local highlights = {
Cursor = { fg = c.bg, bg = c.fg, fmt = "NONE" },
NormalFloat = { bg = c.bg0 },
FloatBorder = { bg = c.bg0 },
TabLineSel = { fg = c.fg, bg = c.bg0 },