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