2021-09-03 14:03:25 +00:00
|
|
|
-- IMPORTANT NOTE : This is default config, so dont change anything here.
|
2022-04-27 15:42:28 +00:00
|
|
|
-- chadrc overrides this file
|
2021-08-18 05:40:13 +00:00
|
|
|
|
2021-08-17 18:32:48 +00:00
|
|
|
local M = {}
|
|
|
|
|
|
|
|
M.options = {
|
2021-11-14 07:13:36 +00:00
|
|
|
|
2022-04-27 22:33:48 +00:00
|
|
|
-- load your options here or load module with options1
|
|
|
|
user = function() end,
|
2021-11-14 07:13:36 +00:00
|
|
|
|
2021-09-19 08:11:28 +00:00
|
|
|
nvChad = {
|
2021-11-14 07:13:36 +00:00
|
|
|
-- updater
|
2021-09-19 08:11:28 +00:00
|
|
|
update_url = "https://github.com/NvChad/NvChad",
|
|
|
|
update_branch = "main",
|
|
|
|
},
|
2021-08-22 06:28:15 +00:00
|
|
|
}
|
2021-08-22 07:49:15 +00:00
|
|
|
|
2021-11-14 07:13:36 +00:00
|
|
|
---- UI -----
|
|
|
|
|
2021-09-19 08:11:28 +00:00
|
|
|
M.ui = {
|
2022-05-01 15:54:33 +00:00
|
|
|
hl_override = {},
|
2022-05-02 18:43:38 +00:00
|
|
|
changed_themes = {},
|
2022-03-25 17:25:06 +00:00
|
|
|
colors = "", -- path of your file that contains colors
|
2021-11-14 07:13:36 +00:00
|
|
|
theme = "onedark", -- default theme
|
2021-09-19 08:11:28 +00:00
|
|
|
transparency = false,
|
2021-08-17 18:32:48 +00:00
|
|
|
}
|
2021-09-24 16:25:44 +00:00
|
|
|
|
2021-09-19 08:11:28 +00:00
|
|
|
M.plugins = {
|
2022-04-27 15:42:28 +00:00
|
|
|
override = {},
|
2022-04-29 05:04:44 +00:00
|
|
|
remove = {},
|
2022-03-31 07:22:23 +00:00
|
|
|
|
2021-09-24 16:25:44 +00:00
|
|
|
options = {
|
2022-01-09 03:37:18 +00:00
|
|
|
packer = {
|
|
|
|
init_file = "plugins.packerInit",
|
2022-04-30 18:07:31 +00:00
|
|
|
snapshot = nil,
|
2022-01-09 03:37:18 +00:00
|
|
|
},
|
2021-09-24 16:25:44 +00:00
|
|
|
lspconfig = {
|
2022-04-27 15:42:28 +00:00
|
|
|
setup_lspconf = "", -- path of lspconfig file
|
2021-09-26 01:33:00 +00:00
|
|
|
},
|
2021-11-14 07:13:36 +00:00
|
|
|
statusline = {
|
2022-04-29 22:27:12 +00:00
|
|
|
separator_style = "default", -- default/round/slant/block/arrow
|
2021-09-19 08:11:28 +00:00
|
|
|
},
|
2021-11-14 07:13:36 +00:00
|
|
|
},
|
|
|
|
|
2022-04-27 15:42:28 +00:00
|
|
|
-- add, modify, remove plugins
|
|
|
|
user = {},
|
2021-08-22 06:28:15 +00:00
|
|
|
}
|
2021-08-22 07:49:15 +00:00
|
|
|
|
2022-04-27 15:42:28 +00:00
|
|
|
-- non plugin only
|
|
|
|
M.mappings = {
|
2022-04-27 23:04:14 +00:00
|
|
|
misc = function() end,
|
2021-08-17 18:32:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return M
|