neovim-config/lua/custom/chadrc.lua

7 lines
148 B
Lua
Raw Normal View History

2023-08-23 14:59:36 +00:00
---@type ChadrcConfig
local M = {}
M.ui = {theme = 'gatekeeper'}
M.plugins = 'custom.plugins'
M.mappings = require "custom.mappings"
return M