2022-02-14 10:45:39 +00:00
|
|
|
-- Just an example, supposed to be placed in /lua/custom/
|
2021-11-19 02:14:06 +00:00
|
|
|
|
|
|
|
local M = {}
|
|
|
|
|
|
|
|
-- make sure you maintain the structure of `core/default_config.lua` here,
|
|
|
|
-- example of changing theme:
|
|
|
|
|
|
|
|
M.ui = {
|
2022-02-14 10:45:39 +00:00
|
|
|
theme = "gruvchad",
|
2021-11-19 02:14:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return M
|