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-06-15 11:38:39 +00:00
|
|
|
-- load your options here or load module with options
|
2022-04-27 22:33:48 +00:00
|
|
|
user = function() end,
|
2021-11-14 07:13:36 +00:00
|
|
|
|
2021-09-19 08:11:28 +00:00
|
|
|
nvChad = {
|
|
|
|
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-09-19 08:11:28 +00:00
|
|
|
M.ui = {
|
2022-06-15 11:38:39 +00:00
|
|
|
-- hl = highlights
|
|
|
|
hl_add = {},
|
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,
|
2022-06-19 08:13:11 +00:00
|
|
|
|
|
|
|
statusline = {
|
|
|
|
separator_style = "default", -- default/round/block/arrow
|
|
|
|
config = "%!v:lua.require'ui.statusline'.run()",
|
|
|
|
override = {},
|
|
|
|
},
|
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-06-15 11:38:39 +00:00
|
|
|
user = {},
|
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
|
|
|
},
|
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
|