Breaking change : easen up custom lspconfig setup

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
This commit is contained in:
siduck 2022-07-24 10:45:14 +00:00
parent 2b55f9bb78
commit 26fc9b5a6c
3 changed files with 6 additions and 17 deletions

View file

@ -83,7 +83,6 @@ local plugins = {
-- lsp stuff
["williamboman/nvim-lsp-installer"] = {
opt = true,
cmd = require("core.lazy_load").lsp_cmds,
setup = function()
require("core.lazy_load").on_file_open "nvim-lsp-installer"
@ -94,7 +93,6 @@ local plugins = {
after = "nvim-lsp-installer",
module = "lspconfig",
config = function()
require "plugins.configs.lsp_installer"
require "plugins.configs.lspconfig"
end,
},