mirror of
https://github.com/NvChad/NvChad.git
synced 2024-11-06 15:20:25 +00:00
d9d380e41b
Some of the recent issues have been caused when the user doesnt even have the custom.plugins file and requires it in chadrc i.e copies the example chadrc as it is without reading it, that results in chadrc not working at all
13 lines
223 B
Lua
13 lines
223 B
Lua
-- Just an example, supposed to be placed in /lua/custom/
|
|
|
|
local M = {}
|
|
|
|
-- make sure you maintain the structure of `core/default_config.lua` here,
|
|
-- example of changing theme:
|
|
|
|
M.ui = {
|
|
theme = "gruvchad",
|
|
}
|
|
|
|
return M
|