2022-07-01 11:32:35 +02:00
|
|
|
local M = {}
|
|
|
|
|
|
|
|
local override = require "custom.override"
|
|
|
|
|
|
|
|
M.plugins = {
|
|
|
|
override = {
|
|
|
|
["nvim-treesitter/nvim-treesitter"] = override.treesitter,
|
|
|
|
},
|
2022-07-20 12:58:19 +02:00
|
|
|
options = {
|
|
|
|
lspconfig = {
|
|
|
|
setup_lspconf = "custom.plugins.lspconfig"
|
|
|
|
},
|
|
|
|
},
|
2022-07-01 11:32:35 +02:00
|
|
|
user = require "custom.plugins",
|
|
|
|
}
|
|
|
|
|
|
|
|
M.ui = {
|
|
|
|
theme = "gruvchad",
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
M.mappings = require "custom.mappings"
|
|
|
|
|
|
|
|
return M
|