nvim/lua/chadrc.lua
2024-05-08 22:50:12 -04:00

25 lines
532 B
Lua

---@type ChadrcConfig
local M = {}
-- Path to overriding theme and highlights files
local highlights = require "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 = "plugins"
-- check core.mappings for table structure
-- M.mappings = require "mappings"
return M