Update nvim configuration

This commit is contained in:
wzykubek 2024-10-28 21:55:15 +01:00
parent afe7a26cb2
commit b962eb615f
No known key found for this signature in database

View File

@ -3,15 +3,41 @@
-- Please read that file to know all available options :(
---@type ChadrcConfig
local M = {}
M.base46 = {
return {
base46 = {
theme = "rosepine",
hl_override = {
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