1
0
Fork 0
mirror of https://github.com/CompeyDev/my-nvim-setup.git synced 2025-04-10 17:50:52 +01:00
my-nvim-setup/examples/chadrc.lua
2022-01-07 19:58:05 +05:30

12 lines
242 B
Lua

-- 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 = {
theme = "onedark",
}
return M