26fc9b5a6c
before we were using variables/fields to setup custom lspconfig but today I realized that we dont even need that, we can just modify default lspconfigs config
32 lines
511 B
Lua
32 lines
511 B
Lua
-- Chadrc overrides this file
|
|
|
|
local M = {}
|
|
|
|
M.options = {
|
|
nvChad = {
|
|
update_url = "https://github.com/NvChad/NvChad",
|
|
update_branch = "main",
|
|
},
|
|
}
|
|
|
|
M.ui = {
|
|
-- hl = highlights
|
|
hl_add = {},
|
|
hl_override = {},
|
|
changed_themes = {},
|
|
theme_toggle = { "onedark", "one_light" },
|
|
theme = "onedark", -- default theme
|
|
transparency = false,
|
|
}
|
|
|
|
M.plugins = {
|
|
override = {},
|
|
remove = {},
|
|
user = {},
|
|
}
|
|
|
|
-- check core.mappings for table structure
|
|
M.mappings = require "core.mappings"
|
|
|
|
return M
|