dotfiles/nvim/lua/custom/chadrc.lua
2024-03-02 20:20:51 -05:00

35 lines
610 B
Lua

---@type ChadrcConfig
local M = {}
-- Path to overriding theme and highlights files
local highlights = require "custom.highlights"
M.ui = {
theme = "doomchad",
theme_toggle = { "nord", "nord" },
hl_override = highlights.override,
hl_add = highlights.add,
cmp = {
style = "atom",
selected_item_bg = "colored",
},
nvdash = {
load_on_startup = true,
},
statusline = {
theme = "default",
separator_style = "round",
lspprogress_len = 40,
}
}
M.plugins = "custom.plugins"
-- check core.mappings for table structure
M.mappings = require "custom.mappings"
return M