2022-12-22 10:18:05 +00:00
|
|
|
-- ChadRC.lua
|
2022-02-14 20:37:02 +00:00
|
|
|
local M = {}
|
|
|
|
|
2022-12-22 10:18:05 +00:00
|
|
|
-- M.options = {
|
|
|
|
-- relativenumber = true,
|
|
|
|
-- smarttab = true
|
|
|
|
-- }
|
2022-02-14 20:37:02 +00:00
|
|
|
|
|
|
|
M.ui = {
|
2022-12-22 10:18:05 +00:00
|
|
|
theme = "tokyonight"
|
2022-02-14 20:37:02 +00:00
|
|
|
}
|
|
|
|
|
2023-03-15 12:06:11 +00:00
|
|
|
M.plugins = "custom.plugins"
|
|
|
|
M.mappings = require "custom.mappings"
|
2022-02-14 20:37:02 +00:00
|
|
|
|
|
|
|
return M
|
2022-12-22 10:18:05 +00:00
|
|
|
|