1
0
Fork 0

nvim cleanup

This commit is contained in:
Luca Bilke 2024-03-09 02:48:53 +01:00
parent 8f4eb54a5b
commit c1a592a787
3 changed files with 12 additions and 10 deletions

View File

@ -1,4 +1,4 @@
local conf = { handlers = {}, required = {} } local conf = { handlers = {} }
conf.handlers["intelephense"] = { conf.handlers["intelephense"] = {
init_options = { 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 conf.ignore = { "rust_analyzer" } -- This will be setup by rustacean.nvim
return conf return conf

View File

@ -1,7 +1,7 @@
return { return {
{ "neovim/nvim-lspconfig" },
{ "folke/neoconf.nvim", config = true }, { "folke/neoconf.nvim", config = true },
{ "folke/neodev.nvim", config = true }, { "folke/neodev.nvim", config = true },
require("plugins.lsp.lspconfig"),
require("plugins.lsp.mason"), require("plugins.lsp.mason"),
require("plugins.lsp.mason-lspconfig"), require("plugins.lsp.mason-lspconfig"),
require("plugins.lsp.mason-null-ls"), require("plugins.lsp.mason-null-ls"),

View File

@ -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