dotfiles/AppData/Local/nvim/lua/custom/chadrc.lua
2023-11-13 21:31:42 -05:00

25 lines
547 B
Lua

---@type ChadrcConfig
local M = {}
-- Path to overriding theme and highlights files
local highlights = require "custom.highlights"
M.ui = {
theme = "lunar_witch",
-- theme_toggle = { "onedark", "one_light" },
hl_override = highlights.override,
hl_add = highlights.add,
statusline = {
overriden_modules = function (modules)
modules[10] = vim.o.columns > 140 and "%#StText# [%l,%c]" or ""
end
}
}
M.plugins = "custom.plugins"
-- check core.mappings for table structure
M.mappings = require "custom.mappings"
return M