From 372665cb43bb7cf82b87cb7ac23b79bed2b853bc Mon Sep 17 00:00:00 2001 From: David Luevano Alvarado Date: Sun, 24 Dec 2023 17:07:21 -0600 Subject: refactor: rename lsp to lspconfig --- lua/plugins/lspconfig.lua | 84 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 lua/plugins/lspconfig.lua (limited to 'lua/plugins/lspconfig.lua') diff --git a/lua/plugins/lspconfig.lua b/lua/plugins/lspconfig.lua new file mode 100644 index 0000000..7b806e6 --- /dev/null +++ b/lua/plugins/lspconfig.lua @@ -0,0 +1,84 @@ +local servers = { + gopls = {}, + -- jedi_language_server = {}, + pyright = {}, + lua_ls = { + Lua = { + workspace = { checkThirdParty = false }, + telemetry = { enable = false }, + }, + } +} + +return { + 'neovim/nvim-lspconfig', + dependencies = { + 'hrsh7th/cmp-nvim-lsp', + -- Required for the keybinds + 'nvim-telescope/telescope.nvim', + { 'williamboman/mason.nvim', config = true }, + 'williamboman/mason-lspconfig.nvim', + { 'j-hui/fidget.nvim', tag = "legacy", opts = {} }, + { 'folke/neodev.nvim', opts = {} }, + }, + config = function() + -- nvim-cmp supports additional completion capabilities, so broadcast that to servers + local capabilities = vim.lsp.protocol.make_client_capabilities() + capabilities = require('cmp_nvim_lsp').default_capabilities(capabilities) + + local lspconfig = require('lspconfig') + local mason_lspconfig = require('mason-lspconfig') + mason_lspconfig.setup({ + ensure_installed = vim.tbl_keys(servers) + }) + + local on_attach = function(_, bufnr) + local nmap = function(keys, func, desc) + if desc then + desc = 'LSP: ' .. desc + end + vim.keymap.set('n', keys, func, { buffer = bufnr, desc = desc }) + end + + nmap('rn', vim.lsp.buf.rename, '[R]e[n]ame') + nmap('ca', vim.lsp.buf.code_action, '[C]ode [A]ction') + + nmap('gd', vim.lsp.buf.definition, '[G]oto [D]efinition') + nmap('gr', require('telescope.builtin').lsp_references, '[G]oto [R]eferences') + nmap('gI', vim.lsp.buf.implementation, '[G]oto [I]mplementation') + nmap('D', vim.lsp.buf.type_definition, 'Type [D]efinition') + nmap('ds', require('telescope.builtin').lsp_document_symbols, '[D]ocument [S]ymbols') + nmap('ws', require('telescope.builtin').lsp_dynamic_workspace_symbols, '[W]orkspace [S]ymbols') + + -- See `:help K` for why this keymap + nmap('k', vim.lsp.buf.hover, 'Hover Documentation') + nmap('K', vim.lsp.buf.signature_help, 'Signature Documentation') + + -- Lesser used LSP functionality + nmap('gD', vim.lsp.buf.declaration, '[G]oto [D]eclaration') + nmap('wa', vim.lsp.buf.add_workspace_folder, '[W]orkspace [A]dd Folder') + nmap('wr', vim.lsp.buf.remove_workspace_folder, '[W]orkspace [R]emove Folder') + nmap('wl', function() + print(vim.inspect(vim.lsp.buf.list_workspace_folders())) + end, '[W]orkspace [L]ist Folders') + + -- Create a command `:Format` local to the LSP buffer + vim.api.nvim_buf_create_user_command(bufnr, 'Format', function(_) + vim.lsp.buf.format() + end, { desc = 'Format current buffer with LSP' }) + end + + mason_lspconfig.setup_handlers({ + function(server_name) + lspconfig[server_name].setup { + capabilities = capabilities, + on_attach = on_attach, + settings = servers[server_name], + } + end, + }) + + -- At the end, add GDscript support, which is only supported by lspconfig itself + lspconfig.gdscript.setup({capabilities = capabilities}) + end, +} -- cgit v1.2.3-54-g00ecf