diff --git a/lua/ow/core/options.lua b/lua/ow/core/options.lua index 5965ebf..4df287c 100644 --- a/lua/ow/core/options.lua +++ b/lua/ow/core/options.lua @@ -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 diff --git a/lua/ow/plugins/onedark.lua b/lua/ow/plugins/onedark.lua index 00134a4..ccec9a7 100644 --- a/lua/ow/plugins/onedark.lua +++ b/lua/ow/plugins/onedark.lua @@ -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 },