Files
dotfiles/private_dot_config/nvim/lua/custom/chadrc.lua
2022-11-25 10:36:46 +02:00

15 lines
259 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 = "gruvbox",
}
M.plugins = require "custom.plugins"
return M