2021-09-03 10:03:25 -04:00
|
|
|
-- IMPORTANT NOTE : This is default config, so dont change anything here.
|
2022-04-27 11:42:28 -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 = {
|
2021-11-14 02:13:36 -05:00
|
|
|
|
2022-04-27 18:33:48 -04:00
|
|
|
-- load your options here or load module with options1
|
|
|
|
user = function() end,
|
2021-11-14 02:13:36 -05:00
|
|
|
|
2021-09-19 04:11:28 -04:00
|
|
|
nvChad = {
|
2021-11-14 02:13:36 -05:00
|
|
|
-- updater
|
2021-09-19 04:11:28 -04:00
|
|
|
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-11-14 02:13:36 -05:00
|
|
|
---- UI -----
|
|
|
|
|
2021-09-19 04:11:28 -04:00
|
|
|
M.ui = {
|
2022-04-27 11:42:28 -04:00
|
|
|
hl_override = "",
|
2022-03-25 13:25:06 -04:00
|
|
|
colors = "", -- path of your file that contains colors
|
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-03-31 03:22:23 -04:00
|
|
|
|
2021-09-24 12:25:44 -04:00
|
|
|
options = {
|
2022-01-08 22:37:18 -05:00
|
|
|
packer = {
|
|
|
|
init_file = "plugins.packerInit",
|
|
|
|
},
|
2021-09-24 12:25:44 -04:00
|
|
|
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
|
|
|
statusline = {
|
2022-04-27 11:42:28 -04:00
|
|
|
style = "default", -- default/round/slant/block/arrow
|
2021-09-19 04:11:28 -04:00
|
|
|
},
|
2021-11-14 02:13:36 -05:00
|
|
|
},
|
|
|
|
|
2022-04-27 11:42:28 -04:00
|
|
|
-- add, modify, remove plugins
|
|
|
|
user = {},
|
2021-08-22 02:28:15 -04:00
|
|
|
}
|
2021-08-22 03:49:15 -04:00
|
|
|
|
2022-04-27 11:42:28 -04:00
|
|
|
-- non plugin only
|
|
|
|
M.mappings = {
|
2022-04-27 19:04:14 -04:00
|
|
|
misc = function() end,
|
2021-08-17 14:32:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return M
|