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