neovim-confs/lua/custom/chadrc.lua

21 lines
400 B
Lua
Raw Normal View History

2024-01-19 22:34:37 +01:00
---@type ChadrcConfig
local M = {}
-- Path to overriding theme and highlights files
local highlights = require "custom.highlights"
M.ui = {
theme = "kanagawa",
theme_toggle = { "kanagawa", "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