Files
nvim/lua/custom/chadrc.lua
thread 3fc6fde51c
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
go stuff & a mess more
2025-03-28 14:53:54 -04:00

21 lines
402 B
Lua

---@type ChadrcConfig
local M = {}
-- Path to overriding theme and highlights files
local highlights = require "custom.highlights"
M.ui = {
theme = "everblush",
theme_toggle = { "everblush", "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