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