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