neodot/.config/nvim/lua/custom/chadrc.lua

26 lines
486 B
Lua
Raw Normal View History

2024-01-23 16:22:56 +00:00
---@type ChadrcConfig
local M = {}
-- Path to overriding theme and highlights files
local highlights = require "custom.highlights"
M.ui = {
theme = "github_dark",
theme_toggle = { "github_dark", "github_light" },
statusline = {
theme = "default",
separator_style = "arrow",
},
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