9 lines
146 B
Lua
9 lines
146 B
Lua
|
---@type ChadrcConfig
|
||
|
local M = {}
|
||
|
|
||
|
M.ui = { theme = 'chadracula' }
|
||
|
M.plugins = "custom.plugins"
|
||
|
M.mappings = require "custom.mappings"
|
||
|
|
||
|
return M
|