fox lsp not being activated by introducing dependencies

This commit is contained in:
2025-07-17 17:09:44 +05:00
parent 462b538f78
commit d4166aa883

View File

@ -7,13 +7,18 @@ return {
{
"williamboman/mason-lspconfig.nvim",
event = "VeryLazy",
dependencies = {
"neovim/nvim-lspconfig",
"williamboman/mason.nvim",
"nvimtools/none-ls.nvim",
},
config = function()
require("user.plugins.lsp.mason_lsp_config")
require("user.plugins.lsp.diagnostics_config").setup()
-- require("user.lsp.none_ls")
vim.cmd([[ command! Format execute 'lua vim.lsp.buf.format{async=true}' ]])
end
end,
},
{ "neovim/nvim-lspconfig", event = "VeryLazy" }, -- enable LSP
{