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-06-15 07:38:39 -04:00
|
|
|
-- load your options here or load module with options
|
2022-04-27 18:33:48 -04:00
|
|
|
user = function() end,
|
2021-11-14 02:13:36 -05:00
|
|
|
|
2021-09-19 04:11:28 -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-06-15 07:38:39 -04:00
|
|
|
-- hl = highlights
|
|
|
|
hl_add = {},
|
2022-05-01 11:54:33 -04:00
|
|
|
hl_override = {},
|
2022-05-02 14:43:38 -04:00
|
|
|
changed_themes = {},
|
2022-05-06 10:44:57 -04:00
|
|
|
theme_toggle = { "onedark", "one_light" },
|
2021-11-14 02:13:36 -05:00
|
|
|
theme = "onedark", -- default theme
|
2021-09-19 04:11:28 -04:00
|
|
|
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-04-27 11:42:28 -04:00
|
|
|
override = {},
|
2022-04-29 01:04:44 -04:00
|
|
|
remove = {},
|
2022-06-15 07:38:39 -04:00
|
|
|
user = {},
|
2021-09-24 12:25:44 -04:00
|
|
|
options = {
|
|
|
|
lspconfig = {
|
2022-04-27 11:42:28 -04:00
|
|
|
setup_lspconf = "", -- path of lspconfig file
|
2021-09-25 21:33:00 -04:00
|
|
|
},
|
2021-11-14 02:13:36 -05:00
|
|
|
},
|
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
|