2022-08-04 15:16:20 +01:00
|
|
|
-- Mappings.
|
|
|
|
-- See `:help vim.diagnostic.*` for documentation on any of the below functions
|
2022-11-07 16:41:35 +00:00
|
|
|
local opts = { noremap = true, silent = true }
|
2023-02-13 12:57:12 +00:00
|
|
|
vim.keymap.set("n", "<leader>e", vim.diagnostic.open_float, opts)
|
|
|
|
vim.keymap.set("n", "[d", vim.diagnostic.goto_prev, opts)
|
|
|
|
vim.keymap.set("n", "]d", vim.diagnostic.goto_next, opts)
|
|
|
|
vim.keymap.set("n", "<leader>q", vim.diagnostic.setloclist, opts)
|
2022-08-04 15:16:20 +01:00
|
|
|
|
2022-11-15 13:33:09 +00:00
|
|
|
local signs = { Error = " ", Warn = " ", Hint = " ", Info = " " }
|
|
|
|
for type, icon in pairs(signs) do
|
2023-02-17 16:35:40 +00:00
|
|
|
local hl = "DiagnosticSign" .. type
|
|
|
|
vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })
|
2022-11-15 13:33:09 +00:00
|
|
|
end
|
|
|
|
|
2023-02-13 12:57:12 +00:00
|
|
|
local lsp_formatting = function(bufnr)
|
2023-02-17 16:35:40 +00:00
|
|
|
vim.lsp.buf.format {
|
|
|
|
filter = function(client) return client.name == "null-ls" end,
|
|
|
|
bufnr = bufnr,
|
|
|
|
timeout_ms = 2000,
|
|
|
|
-- async = true,
|
|
|
|
}
|
2023-01-31 14:41:46 +00:00
|
|
|
end
|
|
|
|
|
2022-08-04 15:16:20 +01:00
|
|
|
-- Use an on_attach function to only map the following keys
|
|
|
|
-- after the language server attaches to the current buffer
|
2023-02-15 15:26:03 +00:00
|
|
|
local on_attach = function(_, bufnr)
|
2023-02-17 16:35:40 +00:00
|
|
|
-- Mappings.
|
|
|
|
-- See `:help vim.lsp.*` for documentation on any of the below functions
|
|
|
|
local bufopts = { noremap = true, silent = true, buffer = bufnr }
|
|
|
|
vim.keymap.set("n", "gD", vim.lsp.buf.definition, bufopts)
|
|
|
|
vim.keymap.set("n", "gd", "<cmd>Trouble lsp_definitions<cr>", bufopts)
|
|
|
|
vim.keymap.set("n", "gR", vim.lsp.buf.references, bufopts)
|
|
|
|
vim.keymap.set("n", "gr", "<cmd>Trouble lsp_references<cr>", bufopts)
|
|
|
|
vim.keymap.set("n", "gI", vim.lsp.buf.implementation, bufopts)
|
|
|
|
vim.keymap.set("n", "gi", "<cmd>Trouble lsp_implementations<cr>", bufopts)
|
|
|
|
vim.keymap.set("n", "K", vim.lsp.buf.hover, bufopts)
|
|
|
|
vim.keymap.set("n", "<C-k>", vim.lsp.buf.signature_help, bufopts)
|
|
|
|
vim.keymap.set("n", "<leader>wa", vim.lsp.buf.add_workspace_folder, bufopts)
|
|
|
|
vim.keymap.set("n", "<leader>wr", vim.lsp.buf.remove_workspace_folder, bufopts)
|
|
|
|
vim.keymap.set("n", "<leader>wl", function() print(vim.inspect(vim.lsp.buf.list_workspace_folders())) end, bufopts)
|
|
|
|
vim.keymap.set("n", "<leader>D", vim.lsp.buf.type_definition, bufopts)
|
|
|
|
vim.keymap.set("n", "<leader>rn", vim.lsp.buf.rename, bufopts)
|
|
|
|
vim.keymap.set("n", "<leader>ca", vim.lsp.buf.code_action, bufopts)
|
|
|
|
vim.keymap.set("n", "<leader>i", lsp_formatting, bufopts)
|
2022-08-04 15:16:20 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
local lsp_flags = {
|
2023-02-17 16:35:40 +00:00
|
|
|
-- This is the default in Nvim 0.7+
|
|
|
|
debounce_text_changes = 150,
|
2022-08-04 15:16:20 +01:00
|
|
|
}
|
2022-08-09 15:16:37 +01:00
|
|
|
|
2023-02-17 16:29:48 +00:00
|
|
|
require("neodev").setup()
|
|
|
|
|
2023-02-17 16:35:40 +00:00
|
|
|
local lspconfig = require "lspconfig"
|
2023-02-14 22:38:18 +00:00
|
|
|
local capabilities = require("cmp_nvim_lsp").default_capabilities()
|
2022-08-09 15:16:37 +01:00
|
|
|
|
2023-02-17 16:35:40 +00:00
|
|
|
lspconfig.pyright.setup {
|
|
|
|
on_attach = on_attach,
|
|
|
|
flags = lsp_flags,
|
|
|
|
capabilities = capabilities,
|
|
|
|
}
|
2022-08-08 17:28:50 +01:00
|
|
|
|
2023-02-17 16:35:40 +00:00
|
|
|
lspconfig.fortls.setup {
|
|
|
|
on_attach = on_attach,
|
|
|
|
flags = lsp_flags,
|
|
|
|
capabilities = capabilities,
|
|
|
|
}
|
2023-01-25 13:53:40 +00:00
|
|
|
|
2023-02-17 16:35:40 +00:00
|
|
|
lspconfig.lua_ls.setup {
|
|
|
|
on_attach = on_attach,
|
|
|
|
flags = lsp_flags,
|
|
|
|
capabilities = capabilities,
|
|
|
|
}
|
2023-02-13 12:57:12 +00:00
|
|
|
|
2023-02-17 16:35:40 +00:00
|
|
|
lspconfig.texlab.setup {
|
|
|
|
on_attach = on_attach,
|
|
|
|
flags = lsp_flags,
|
|
|
|
capabilities = capabilities,
|
|
|
|
}
|
2023-02-15 15:26:03 +00:00
|
|
|
|
2023-02-17 16:35:40 +00:00
|
|
|
local null_ls = require "null-ls"
|
|
|
|
null_ls.setup {
|
|
|
|
sources = {
|
|
|
|
null_ls.builtins.code_actions.gitsigns,
|
|
|
|
null_ls.builtins.diagnostics.mypy,
|
|
|
|
null_ls.builtins.diagnostics.zsh,
|
|
|
|
null_ls.builtins.formatting.black,
|
|
|
|
null_ls.builtins.formatting.isort,
|
|
|
|
null_ls.builtins.formatting.trim_whitespace,
|
|
|
|
null_ls.builtins.formatting.stylua,
|
|
|
|
null_ls.builtins.formatting.shfmt,
|
|
|
|
null_ls.builtins.formatting.prettier,
|
|
|
|
null_ls.builtins.hover.dictionary,
|
|
|
|
},
|
|
|
|
on_attach = on_attach,
|
|
|
|
flags = lsp_flags,
|
|
|
|
capabilities = capabilities,
|
|
|
|
}
|