neodotfiles/user/.config/nvim/lua/custom/chadrc.lua
Clay Gomera 79eefeb3cf updated
2022-09-14 10:28:06 -04:00

27 lines
469 B
Lua

-- Chadrc overrides this file
local M = {}
M.options = {
nvChad = {
update_url = "https://github.com/NvChad/NvChad",
update_branch = "main",
},
}
M.ui = {
-- hl = highlights
hl_add = {},
hl_override = {},
changed_themes = {},
theme_toggle = { "gruvbox", "gruvbox-light" },
theme = "gruvbox", -- default theme
transparency = false,
}
M.plugins = {}
-- check core.mappings for table structure
M.mappings = require "core.mappings"
return M