dotfiles/.config/nvim/lua/custom/chadrc.lua

19 lines
308 B
Lua
Raw Normal View History

2022-05-10 19:33:34 +00:00
-- 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",
}
2022-07-17 13:20:40 +00:00
local userPlugins = require "custom.plugins"
M.plugins = {
user = userPlugins
}
2022-05-10 19:33:34 +00:00
return M