25 lines
532 B
Lua
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
|