2021-09-04 00:03:25 +10:00
|
|
|
-- IMPORTANT NOTE : This is default config, so dont change anything here.
|
2022-04-27 21:12:28 +05:30
|
|
|
-- chadrc overrides this file
|
2021-08-18 11:10:13 +05:30
|
|
|
|
2021-08-17 13:32:48 -05:00
|
|
|
local M = {}
|
|
|
|
|
|
|
|
M.options = {
|
2021-11-14 12:43:36 +05:30
|
|
|
|
2022-04-28 04:03:48 +05:30
|
|
|
-- load your options here or load module with options1
|
|
|
|
user = function() end,
|
2021-11-14 12:43:36 +05:30
|
|
|
|
2021-09-19 18:11:28 +10:00
|
|
|
nvChad = {
|
2021-11-14 12:43:36 +05:30
|
|
|
-- updater
|
2021-09-19 18:11:28 +10:00
|
|
|
update_url = "https://github.com/NvChad/NvChad",
|
|
|
|
update_branch = "main",
|
|
|
|
},
|
2021-08-22 11:58:15 +05:30
|
|
|
}
|
2021-08-22 13:19:15 +05:30
|
|
|
|
2021-11-14 12:43:36 +05:30
|
|
|
---- UI -----
|
|
|
|
|
2021-09-19 18:11:28 +10:00
|
|
|
M.ui = {
|
2022-05-01 21:24:33 +05:30
|
|
|
hl_override = {},
|
2022-05-03 00:13:38 +05:30
|
|
|
changed_themes = {},
|
2022-05-06 20:14:57 +05:30
|
|
|
theme_toggle = { "onedark", "one_light" },
|
2021-11-14 12:43:36 +05:30
|
|
|
theme = "onedark", -- default theme
|
2021-09-19 18:11:28 +10:00
|
|
|
transparency = false,
|
2021-08-17 13:32:48 -05:00
|
|
|
}
|
2021-09-24 21:55:44 +05:30
|
|
|
|
2021-09-19 18:11:28 +10:00
|
|
|
M.plugins = {
|
2022-04-27 21:12:28 +05:30
|
|
|
override = {},
|
2022-04-29 01:04:44 -04:00
|
|
|
remove = {},
|
2022-03-31 12:52:23 +05:30
|
|
|
|
2021-09-24 21:55:44 +05:30
|
|
|
options = {
|
|
|
|
lspconfig = {
|
2022-04-27 21:12:28 +05:30
|
|
|
setup_lspconf = "", -- path of lspconfig file
|
2021-09-26 07:03:00 +05:30
|
|
|
},
|
2021-11-14 12:43:36 +05:30
|
|
|
statusline = {
|
2022-04-30 03:57:12 +05:30
|
|
|
separator_style = "default", -- default/round/slant/block/arrow
|
2021-09-19 18:11:28 +10:00
|
|
|
},
|
2022-05-09 19:54:02 +08:00
|
|
|
telescope = {
|
|
|
|
extensions = { "themes", "terms" }
|
|
|
|
}
|
2021-11-14 12:43:36 +05:30
|
|
|
},
|
|
|
|
|
2022-04-27 21:12:28 +05:30
|
|
|
-- add, modify, remove plugins
|
|
|
|
user = {},
|
2021-08-22 11:58:15 +05:30
|
|
|
}
|
2021-08-22 13:19:15 +05:30
|
|
|
|
2022-05-12 18:26:01 +05:30
|
|
|
-- check core.mappings for table structure
|
|
|
|
M.mappings = require "core.mappings"
|
2021-08-17 13:32:48 -05:00
|
|
|
|
|
|
|
return M
|