Files
dotfiles/nvim/lua/chadrc.lua
2026-04-05 10:42:44 -05:00

20 lines
211 B
Lua

---@type ChadrcConfig
local M = {}
M.base46 = {
theme = "onedark",
}
-- Enable the startup dashboard
M.nvdash = {
load_on_startup = true,
}
M.ui = {
tabufline = {
lazyload = false,
},
}
return M