8 lines
151 B
Lua
8 lines
151 B
Lua
---@type ChadrcConfig
|
|
local M = {}
|
|
|
|
M.ui = { theme = 'one_light' }
|
|
M.plugins = 'custom.plugins'
|
|
M.mappings = require "custom.mappings"
|
|
return M
|