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