dotfiles/configfile/nvim/lua/custom/chadrc.lua

18 lines
216 B
Lua
Raw Permalink Normal View History

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
}
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