feat: added cursorline

This commit is contained in:
alzalia1 2025-11-20 10:01:15 +01:00
parent cbddabc3ba
commit 0e0c04c80b
2 changed files with 11 additions and 1 deletions

View file

@ -36,3 +36,5 @@ require "nvchad.autocmds"
vim.schedule(function()
require "mappings"
end)
vim.o.culopt = "both"

View file

@ -6,7 +6,15 @@
local M = {}
M.base46 = {
theme = "radium",
theme = "radium",
}
M.ui = {
hl_override = {
CursorLine = {
bg = "one_bg",
},
},
}
return M