Files
nvim/lua/custom/chadrc.lua
Adam Bellinson 01480f98b5
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
do/end block treesitter, avante
2025-06-18 19:18:11 -04:00

21 lines
404 B
Lua

---@type ChadrcConfig
local M = {}
-- Path to overriding theme and highlights files
local highlights = require "custom.highlights"
M.ui = {
theme = "chadracula",
theme_toggle = { "chadracula", "one_light" },
hl_override = highlights.override,
hl_add = highlights.add,
}
M.plugins = "custom.plugins"
-- check core.mappings for table structure
M.mappings = require "custom.mappings"
return M