10 lines
145 B
Lua
10 lines
145 B
Lua
---@type ChadrcConfig
|
|
local M = {}
|
|
|
|
M.ui = { theme = 'nightowl' }
|
|
M.plugins = "custom.plugins"
|
|
M.mappings = require "custom.mappings"
|
|
|
|
|
|
return M
|