22 lines
427 B
Lua
Raw Normal View History

2024-02-20 20:05:41 -07:00
---@type ChadrcConfig
local M = {}
-- Path to overriding theme and highlights files
local highlights = require "custom.highlights"
M.ui = {
2024-02-20 20:11:14 -07:00
theme = "chadracula",
theme_toggle = { "chadracula", "one_light" },
2024-02-20 20:05:41 -07:00
hl_override = highlights.override,
hl_add = highlights.add,
transparency = true,
}
M.plugins = "custom.plugins"
-- check core.mappings for table structure
M.mappings = require "custom.mappings"
return M