2022-06-25 07:51:50 +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 = {
|
2022-06-15 13:38:39 +02:00
|
|
|
-- load your options here or load module with options
|
2022-04-28 00:33:48 +02:00
|
|
|
user = function() end,
|
2021-11-14 08:13:36 +01:00
|
|
|
|
2021-09-19 10:11:28 +02:00
|
|
|
nvChad = {
|
|
|
|
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-09-19 10:11:28 +02:00
|
|
|
M.ui = {
|
2022-06-15 13:38:39 +02:00
|
|
|
-- hl = highlights
|
|
|
|
hl_add = {},
|
2022-05-01 17:54:33 +02:00
|
|
|
hl_override = {},
|
2022-05-02 20:43:38 +02:00
|
|
|
changed_themes = {},
|
2022-05-06 16:44:57 +02:00
|
|
|
theme_toggle = { "onedark", "one_light" },
|
2021-11-14 08:13:36 +01:00
|
|
|
theme = "onedark", -- default theme
|
2021-09-19 10:11:28 +02:00
|
|
|
transparency = false,
|
2022-06-19 10:13:11 +02:00
|
|
|
|
|
|
|
statusline = {
|
|
|
|
separator_style = "default", -- default/round/block/arrow
|
2022-07-04 08:21:43 +02:00
|
|
|
config = "%!v:lua.require('ui.statusline').run()",
|
2022-06-19 10:13:11 +02:00
|
|
|
override = {},
|
|
|
|
},
|
2022-06-24 15:54:59 +02:00
|
|
|
|
2022-06-25 07:51:50 +02:00
|
|
|
-- lazyload it when there are 1+ buffers
|
2022-06-27 03:46:33 +02:00
|
|
|
tabufline = {
|
|
|
|
enabled = true,
|
|
|
|
lazyload = true,
|
|
|
|
override = {},
|
|
|
|
},
|
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-04-29 07:04:44 +02:00
|
|
|
remove = {},
|
2022-06-15 13:38:39 +02:00
|
|
|
user = {},
|
2021-09-24 18:25:44 +02:00
|
|
|
options = {
|
|
|
|
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
|
|
|
},
|
2021-08-22 08:28:15 +02:00
|
|
|
}
|
2021-08-22 09:49:15 +02:00
|
|
|
|
2022-05-12 14:56:01 +02:00
|
|
|
-- check core.mappings for table structure
|
|
|
|
M.mappings = require "core.mappings"
|
2021-08-17 20:32:48 +02:00
|
|
|
|
|
|
|
return M
|