add nvim config

This commit is contained in:
Benjamin Palko 2024-03-02 20:20:51 -05:00
parent 01dae7e4ca
commit 460bd73aed
30 changed files with 2689 additions and 0 deletions

View file

@ -0,0 +1,35 @@
---@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