return { "neovim/nvim-lspconfig", event = { "BufReadPre", "BufNewFile" }, dependencies = { "hrsh7th/cmp-nvim-lsp", { "antosha417/nvim-lsp-file-operations", config = true }, }, config = function() -- import lspconfig plugin local lspconfig = require("lspconfig") -- function to ignore the jdtls local noop = function() end -- import cmp-nvim-lsp plugin local cmp_nvim_lsp = require("cmp_nvim_lsp") local keymap = vim.keymap -- for conciseness require("lspconfig.ui.windows").default_options.border = "rounded" vim.diagnostic.config({ float = { border = "rounded" }, }) local opts = { noremap = true, silent = true } local on_attach = function(client, bufnr) opts.buffer = bufnr -- set keybinds opts.desc = "Show LSP references" keymap.set("n", "gR", "Telescope lsp_references", opts) -- show definition, references opts.desc = "Go to declaration" keymap.set("n", "gD", vim.lsp.buf.declaration, opts) -- go to declaration opts.desc = "Show LSP definitions" keymap.set("n", "gd", "Telescope lsp_definitions", opts) -- show lsp definitions opts.desc = "Show LSP implementations" keymap.set("n", "gi", "Telescope lsp_implementations", opts) -- show lsp implementations opts.desc = "Show LSP type definitions" keymap.set("n", "gt", "Telescope lsp_type_definitions", opts) -- show lsp type definitions opts.desc = "See available code actions" keymap.set({ "n", "v" }, "ca", vim.lsp.buf.code_action, opts) -- see available code actions, in visual mode will apply to selection opts.desc = "Smart rename" keymap.set("n", "rn", vim.lsp.buf.rename, opts) -- smart rename opts.desc = "Show buffer diagnostics" keymap.set("n", "D", "Telescope diagnostics bufnr=0", opts) -- show diagnostics for file opts.desc = "Show line diagnostics" keymap.set("n", "d", vim.diagnostic.open_float, opts) -- show diagnostics for line opts.desc = "Go to previous diagnostic" keymap.set("n", "[d", vim.diagnostic.goto_prev, opts) -- jump to previous diagnostic in buffer opts.desc = "Go to next diagnostic" keymap.set("n", "]d", vim.diagnostic.goto_next, opts) -- jump to next diagnostic in buffer opts.desc = "Show documentation for what is under cursor" keymap.set("n", "K", vim.lsp.buf.hover, opts) -- show documentation for what is under cursor opts.desc = "Restart LSP" keymap.set("n", "rs", ":LspRestart", opts) -- mapping to restart lsp if necessary opts.desc = "LSP Document Symbols" keymap.set("n", "dS", "Telescope lsp_document_symbols", opts) opts.desc = "LSP Workspace Symbols" keymap.set("n", "wS", "Telescope lsp_dynamic_workspace_symbols", opts) end -- used to enable autocompletion (assign to every lsp server config) local capabilities = cmp_nvim_lsp.default_capabilities() -- Change the Diagnostic symbols in the sign column (gutter) -- (not in youtube nvim video) local signs = { Error = " ", Warn = " ", Hint = "󰠠 ", Info = " " } for type, icon in pairs(signs) do local hl = "DiagnosticSign" .. type vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = "" }) end require("mason-lspconfig").setup_handlers({ function(server_name) lspconfig[server_name].setup({ on_attach = on_attach, capabilities = capabilities, }) end, ["jdtls"] = noop, }) -- configure clangd server lspconfig["clangd"].setup({ capabilities = capabilities, on_attach = on_attach, }) -- configure css server lspconfig["cssls"].setup({ capabilities = capabilities, on_attach = on_attach, }) -- configure emmet language server lspconfig["emmet_ls"].setup({ capabilities = capabilities, on_attach = on_attach, filetypes = { "html", "typescriptreact", "javascriptreact", "css", "sass", "scss", "less", "svelte" }, }) -- configure go server (gopls) lspconfig["gopls"].setup({ cmd = { "gopls" }, on_attach = on_attach, capabilities = capabilities, filetypes = { "go", "gomod", "gowork", "gotmpl" }, root_dir = lspconfig.util.root_pattern("go.mod", "go.work", ".git"), settings = { gopls = { completeUnimported = true, usePlaceholders = true, analyses = { unusedparams = true, }, -- staticcheck = true, }, }, }) -- configure graphql language server lspconfig["graphql"].setup({ capabilities = capabilities, on_attach = on_attach, filetypes = { "graphql", "gql", "svelte", "typescriptreact", "javascriptreact" }, }) -- configure html server lspconfig["html"].setup({ capabilities = capabilities, on_attach = on_attach, }) -- configure lua server (with special settings) lspconfig["lua_ls"].setup({ capabilities = capabilities, on_attach = on_attach, settings = { -- custom settings for lua Lua = { -- make the language server recognize "vim" global diagnostics = { globals = { "vim" }, }, workspace = { -- make language server aware of runtime files library = { [vim.fn.expand("$VIMRUNTIME/lua")] = true, [vim.fn.stdpath("config") .. "/lua"] = true, }, }, }, }, }) -- configure prisma orm server lspconfig["prismals"].setup({ capabilities = capabilities, on_attach = on_attach, }) -- configure python server lspconfig["pyright"].setup({ capabilities = capabilities, on_attach = on_attach, }) -- configure svelte server lspconfig["svelte"].setup({ capabilities = capabilities, on_attach = function(client, bufnr) on_attach(client, bufnr) vim.api.nvim_create_autocmd("BufWritePost", { pattern = { "*.js", "*.ts" }, callback = function(ctx) if client.name == "svelte" then client.notify("$/onDidChangeTsOrJsFile", { uri = ctx.file }) end end, }) end, }) -- configure tailwindcss server lspconfig["tailwindcss"].setup({ capabilities = capabilities, on_attach = on_attach, }) -- configure typescript server with plugin lspconfig["tsserver"].setup({ capabilities = capabilities, on_attach = on_attach, handlers = { ["textDocument/publishDiagnostics"] = function(_, result, ctx, config) if result.diagnostics ~= nil then local idx = 1 while idx <= #result.diagnostics do if result.diagnostics[idx].code == 80001 then table.remove(result.diagnostics, idx) else idx = idx + 1 end end end vim.lsp.diagnostic.on_publish_diagnostics(_, result, ctx, config) end, }, }) end, }