---@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