mirror of https://github.com/E-Almqvist/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
400 B
23 lines
400 B
10 months ago
|
---@type ChadrcConfig
|
||
|
local M = {}
|
||
|
|
||
|
-- Path to overriding theme and highlights files
|
||
|
local highlights = require "custom.highlights"
|
||
|
|
||
|
M.ui = {
|
||
|
theme = "onedark",
|
||
|
theme_toggle = { "onedark", "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
|