nvim cleanup
This commit is contained in:
parent
8f4eb54a5b
commit
c1a592a787
|
@ -1,4 +1,4 @@
|
|||
local conf = { handlers = {}, required = {} }
|
||||
local conf = { handlers = {} }
|
||||
|
||||
conf.handlers["intelephense"] = {
|
||||
init_options = {
|
||||
|
@ -16,7 +16,16 @@ conf.handlers["bashls"] = {
|
|||
},
|
||||
}
|
||||
|
||||
conf.required = { "lua_ls", "zk", "bashls" }
|
||||
conf.required = {
|
||||
"zk",
|
||||
"jsonls",
|
||||
"yamlls",
|
||||
"lua_ls",
|
||||
"bashls",
|
||||
"ansiblels",
|
||||
"dockerls",
|
||||
}
|
||||
|
||||
|
||||
conf.ignore = { "rust_analyzer" } -- This will be setup by rustacean.nvim
|
||||
return conf
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
return {
|
||||
{ "neovim/nvim-lspconfig" },
|
||||
{ "folke/neoconf.nvim", config = true },
|
||||
{ "folke/neodev.nvim", config = true },
|
||||
require("plugins.lsp.lspconfig"),
|
||||
require("plugins.lsp.mason"),
|
||||
require("plugins.lsp.mason-lspconfig"),
|
||||
require("plugins.lsp.mason-null-ls"),
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
local M = { "neovim/nvim-lspconfig" }
|
||||
|
||||
M.dependencies = { "mason-lspconfig.nvim", "neoconf.nvim", "neodev.nvim" }
|
||||
|
||||
M.event = { "BufReadPost", "BufNewFile", "BufNew" }
|
||||
|
||||
return M
|
Loading…
Reference in New Issue