feat: added cursorline
This commit is contained in:
parent
cbddabc3ba
commit
0e0c04c80b
2 changed files with 11 additions and 1 deletions
2
init.lua
2
init.lua
|
|
@ -36,3 +36,5 @@ require "nvchad.autocmds"
|
||||||
vim.schedule(function()
|
vim.schedule(function()
|
||||||
require "mappings"
|
require "mappings"
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
vim.o.culopt = "both"
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,15 @@
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
M.base46 = {
|
M.base46 = {
|
||||||
theme = "radium",
|
theme = "radium",
|
||||||
|
}
|
||||||
|
|
||||||
|
M.ui = {
|
||||||
|
hl_override = {
|
||||||
|
CursorLine = {
|
||||||
|
bg = "one_bg",
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue