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-05-06 14:44:57 +00:00
|
|
|
theme_toggle = { "onedark", "one_light" },
|
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 = {
|
|
|
|
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
|
|
|
},
|
2022-05-09 11:54:02 +00:00
|
|
|
telescope = {
|
|
|
|
extensions = { "themes", "terms" }
|
|
|
|
}
|
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-05-12 12:56:01 +00:00
|
|
|
-- check core.mappings for table structure
|
|
|
|
M.mappings = require "core.mappings"
|
2021-08-17 18:32:48 +00:00
|
|
|
|
|
|
|
return M
|