neovim-config/examples/chadrc.lua

13 lines
242 B
Lua
Raw Normal View History

2022-01-07 14:28:05 +00:00
-- This is an example chadrc file , its 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 = {
2022-01-07 14:28:05 +00:00
theme = "onedark",
}
return M