2022-06-25 05:51:50 +00:00
|
|
|
-- Chadrc overrides this file
|
2021-08-18 05:40:13 +00:00
|
|
|
|
2021-08-17 18:32:48 +00:00
|
|
|
local M = {}
|
|
|
|
|
|
|
|
M.options = {
|
2022-07-22 16:00:00 +00:00
|
|
|
nvChad = {
|
|
|
|
update_url = "https://github.com/NvChad/NvChad",
|
|
|
|
update_branch = "main",
|
|
|
|
},
|
2021-08-22 06:28:15 +00:00
|
|
|
}
|
2021-08-22 07:49:15 +00:00
|
|
|
|
2021-09-19 08:11:28 +00:00
|
|
|
M.ui = {
|
2022-07-22 16:00:00 +00:00
|
|
|
-- hl = highlights
|
|
|
|
hl_add = {},
|
|
|
|
hl_override = {},
|
|
|
|
changed_themes = {},
|
|
|
|
theme_toggle = { "onedark", "one_light" },
|
|
|
|
theme = "onedark", -- default theme
|
|
|
|
transparency = false,
|
2021-08-17 18:32:48 +00:00
|
|
|
}
|
2021-09-24 16:25:44 +00:00
|
|
|
|
2021-09-19 08:11:28 +00:00
|
|
|
M.plugins = {
|
2022-07-22 16:00:00 +00:00
|
|
|
override = {},
|
|
|
|
remove = {},
|
|
|
|
user = {},
|
2021-08-22 06:28:15 +00:00
|
|
|
}
|
2021-08-22 07:49:15 +00:00
|
|
|
|
2022-05-12 12:56:01 +00:00
|
|
|
-- check core.mappings for table structure
|
|
|
|
M.mappings = require "core.mappings"
|
2021-08-17 18:32:48 +00:00
|
|
|
|
|
|
|
return M
|