2022-02-14 20:37:02 +00:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-12-22 10:18:05 +00:00
|
|
|
M.plugins = require "custom.plugins"
|
2022-02-14 20:37:02 +00:00
|
|
|
|
2022-12-22 10:18:05 +00:00
|
|
|
-- M.mappings = {
|
|
|
|
-- -- custom = {}, -- custom user mappings
|
|
|
|
--
|
|
|
|
-- custom = {
|
|
|
|
-- cheatsheet = "<leader>ch",
|
|
|
|
-- line_number_toggle = "<leader>n", -- toggle line number
|
|
|
|
-- update_nvchad = "<leader>uu",
|
|
|
|
-- new_tab = "<leader>t",
|
|
|
|
-- },
|
|
|
|
-- }
|
2022-02-14 20:37:02 +00:00
|
|
|
|
|
|
|
return M
|
2022-12-22 10:18:05 +00:00
|
|
|
|