Neovim_Backup/NvChad-Confs/chadrc.lua
2021-11-10 22:51:35 -06:00

18 lines
249 B
Lua

local M = {}
M.options, M.ui, M.mappings, M.plugins = {}, {}, {}, {}
M.ui = {
theme = "tokyonight",
transparency = true,
}
M.plugins = {
options = {},
status = {
dashboard = true,
},
default_plugin_config_replace = {},
}
return M