AwesomeFiles/config/nvim/examples/chadrc.lua
VincentKnightTesting 0bd393476c unfuck
2022-04-19 17:58:10 -05:00

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