Update nvim configuration
This commit is contained in:
parent
afe7a26cb2
commit
b962eb615f
@ -3,15 +3,41 @@
|
|||||||
-- Please read that file to know all available options :(
|
-- Please read that file to know all available options :(
|
||||||
|
|
||||||
---@type ChadrcConfig
|
---@type ChadrcConfig
|
||||||
local M = {}
|
|
||||||
|
|
||||||
M.base46 = {
|
return {
|
||||||
|
|
||||||
|
base46 = {
|
||||||
theme = "rosepine",
|
theme = "rosepine",
|
||||||
|
|
||||||
hl_override = {
|
hl_override = {
|
||||||
Comment = { italic = true },
|
Comment = { italic = true },
|
||||||
["@comment"] = { italic = true },
|
["@comment"] = { italic = true },
|
||||||
|
|
||||||
|
St_NormalMode = { bg = "#ebbcba" },
|
||||||
|
St_NormalModeSep = { fg = "#ebbcba" },
|
||||||
|
St_InsertMode = { bg = "#c4a7e7" },
|
||||||
|
St_InsertModeSep = { fg = "#c4a7e7" },
|
||||||
|
St_VisualMode = { bg = "#9ccfd8" },
|
||||||
|
St_VisualModeSep = { fg = "#9ccfd8" },
|
||||||
|
St_ReplaceMode = { bg = "#f6c177" },
|
||||||
|
St_ReplaceModeSep = { fg = "#f6c177" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
ui = {
|
||||||
|
telescope = {
|
||||||
|
style = "bordered",
|
||||||
|
},
|
||||||
|
statusline = {
|
||||||
|
separator_style = "round",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
nvdash = {
|
||||||
|
load_on_startup = true,
|
||||||
|
},
|
||||||
|
|
||||||
|
colorify = {
|
||||||
|
mode = "bg",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
return M
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user