mirror of
https://github.com/Dannecron/Dannecron.git
synced 2025-12-25 16:22:35 +03:00
22 lines
423 B
Lua
22 lines
423 B
Lua
---@type ChadrcConfig
|
|
local M = {}
|
|
|
|
-- Path to overriding theme and highlights files
|
|
local highlights = require "custom.highlights"
|
|
|
|
M.ui = {
|
|
theme = "one_light",
|
|
theme_toggle = { "one_light", "onedark" },
|
|
transparency = true,
|
|
|
|
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
|