2022-06-25 11:21:50 +05:30
|
|
|
-- Chadrc overrides this file
|
2021-08-18 11:10:13 +05:30
|
|
|
|
2021-08-17 13:32:48 -05: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 11:58:15 +05:30
|
|
|
}
|
2021-08-22 13:19:15 +05:30
|
|
|
|
2021-09-19 18:11:28 +10: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 13:32:48 -05:00
|
|
|
}
|
2021-09-24 21:55:44 +05:30
|
|
|
|
2022-09-02 11:05:50 +05:30
|
|
|
M.plugins = {}
|
2021-08-22 13:19:15 +05:30
|
|
|
|
2022-05-12 18:26:01 +05:30
|
|
|
-- check core.mappings for table structure
|
|
|
|
M.mappings = require "core.mappings"
|
2021-08-17 13:32:48 -05:00
|
|
|
|
|
|
|
return M
|