Neovim_Backup/NvChad-Confs/chadrc.lua

18 lines
249 B
Lua
Raw Normal View History

2021-11-10 22:51:35 -06:00
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