dotfiles/.nvchad-custom/chadrc.lua

25 lines
438 B
Lua
Raw Permalink Normal View History

2023-05-31 17:03:26 -04:00
---@type ChadrcConfig
local M = {}
-- Path to overriding theme and highlights files
local highlights = require "custom.highlights"
M.ui = {
2024-01-24 14:30:44 -05:00
theme = "onedark",
theme_toggle = { "onedark", "one_light" },
2023-05-31 17:03:26 -04:00
hl_override = highlights.override,
hl_add = highlights.add,
2023-06-07 04:26:34 -04:00
tabufline = {
enabled = false,
},
2023-05-31 17:03:26 -04:00
}
M.plugins = "custom.plugins"
-- check core.mappings for table structure
M.mappings = require "custom.mappings"
return M