dotfiles/dot_config/nvim/lua/custom/chadrc.lua

20 lines
298 B
Lua

---@type ChadrcConfig
local M = {}
M.plugins = "custom.plugins"
M.mappings = require "custom.mappings"
M.ui = {
theme = "tomorrow_night",
statusline = {
theme = "default",
separator_style = "arrow",
},
tabufline = {
lazyload = false,
show_numbers = true,
},
}
return M