2023-01-31 14:41:46 +00:00
|
|
|
-- Set up null_ls first
|
|
|
|
local null_ls = require("null-ls")
|
|
|
|
null_ls.setup {
|
|
|
|
sources = {
|
|
|
|
null_ls.builtins.code_actions.gitsigns,
|
|
|
|
null_ls.builtins.diagnostics.mypy,
|
2023-01-31 16:23:54 +00:00
|
|
|
null_ls.builtins.diagnostics.zsh,
|
2023-01-31 14:41:46 +00:00
|
|
|
null_ls.builtins.formatting.black,
|
|
|
|
null_ls.builtins.formatting.isort,
|
|
|
|
null_ls.builtins.formatting.latexindent,
|
|
|
|
null_ls.builtins.formatting.trim_whitespace,
|
|
|
|
null_ls.builtins.hover.dictionary,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
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 }
|
2022-09-23 19:38:29 +01:00
|
|
|
vim.keymap.set('n', '<leader>e', vim.diagnostic.open_float, opts)
|
2022-08-04 15:16:20 +01:00
|
|
|
vim.keymap.set('n', '[d', vim.diagnostic.goto_prev, opts)
|
|
|
|
vim.keymap.set('n', ']d', vim.diagnostic.goto_next, opts)
|
2022-09-23 19:38:29 +01:00
|
|
|
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
|
2022-11-28 13:25:36 +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-01-31 14:41:46 +00:00
|
|
|
local lsp_formatting = function (bufnr)
|
|
|
|
vim.lsp.buf.format({
|
|
|
|
filter = function (client)
|
|
|
|
return client.name == "null-ls"
|
|
|
|
end,
|
|
|
|
bufnr = bufnr,
|
|
|
|
timeout_ms = 2000,
|
|
|
|
-- async = true,
|
|
|
|
})
|
|
|
|
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
|
|
|
|
local on_attach = function(client, bufnr)
|
2022-11-02 13:40:30 +00:00
|
|
|
-- Mappings.
|
|
|
|
-- See `:help vim.lsp.*` for documentation on any of the below functions
|
2022-11-07 16:41:35 +00:00
|
|
|
local bufopts = { noremap = true, silent = true, buffer = bufnr }
|
2022-11-15 13:33:09 +00:00
|
|
|
vim.keymap.set('n', 'gD', vim.lsp.buf.definition, bufopts)
|
2022-12-07 08:57:45 +00:00
|
|
|
vim.keymap.set('n', 'gd', '<cmd>Trouble lsp_definitions<cr>', bufopts)
|
2022-11-15 13:33:09 +00:00
|
|
|
vim.keymap.set('n', 'gR', vim.lsp.buf.references, bufopts)
|
2022-12-07 08:57:45 +00:00
|
|
|
vim.keymap.set('n', 'gr', '<cmd>Trouble lsp_references<cr>', bufopts)
|
2022-11-15 13:33:09 +00:00
|
|
|
vim.keymap.set('n', 'gI', vim.lsp.buf.implementation, bufopts)
|
2022-12-07 08:57:45 +00:00
|
|
|
vim.keymap.set('n', 'gi', '<cmd>Trouble lsp_implementations<cr>', bufopts)
|
2022-11-02 13:40:30 +00:00
|
|
|
vim.keymap.set('n', 'K', vim.lsp.buf.hover, bufopts)
|
2023-01-31 17:01:37 +00:00
|
|
|
vim.keymap.set('n', '<C-k>', vim.lsp.buf.signature_help, bufopts)
|
2022-11-02 13:40:30 +00:00
|
|
|
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)
|
2023-01-31 14:41:46 +00:00
|
|
|
vim.keymap.set('n', '<leader>i', lsp_formatting, bufopts)
|
2022-08-04 15:16:20 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
local lsp_flags = {
|
2022-11-02 13:40:30 +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-01-31 13:42:24 +00:00
|
|
|
local capabilities = require('cmp_nvim_lsp').default_capabilities()
|
2022-08-09 15:16:37 +01:00
|
|
|
|
2023-01-31 13:42:24 +00:00
|
|
|
require('lspconfig')['pyright'].setup{
|
2023-01-09 15:24:30 +00:00
|
|
|
on_attach = on_attach,
|
|
|
|
flags = lsp_flags,
|
|
|
|
capabilities = capabilities,
|
2022-11-07 15:12:13 +00:00
|
|
|
}
|
|
|
|
|
2022-11-07 16:41:35 +00:00
|
|
|
require('lspconfig')['fortls'].setup {
|
2022-11-02 13:40:30 +00:00
|
|
|
on_attach = on_attach,
|
|
|
|
flags = lsp_flags,
|
|
|
|
capabilities = capabilities
|
2022-08-04 15:16:20 +01:00
|
|
|
}
|
2022-08-08 17:28:50 +01:00
|
|
|
|
2022-11-02 09:05:01 +00:00
|
|
|
require('lspconfig')['sumneko_lua'].setup {
|
2022-11-02 13:40:30 +00:00
|
|
|
settings = {
|
|
|
|
Lua = {
|
|
|
|
runtime = {
|
|
|
|
-- Tell the language server which version of Lua you're using (most likely LuaJIT in the case of Neovim)
|
|
|
|
version = 'LuaJIT',
|
|
|
|
},
|
|
|
|
diagnostics = {
|
|
|
|
-- Get the language server to recognize the `vim` global
|
2022-11-07 16:41:35 +00:00
|
|
|
globals = { 'vim' },
|
2022-11-02 13:40:30 +00:00
|
|
|
},
|
|
|
|
workspace = {
|
|
|
|
-- Make the server aware of Neovim runtime files
|
|
|
|
library = vim.api.nvim_get_runtime_file("", true),
|
|
|
|
},
|
|
|
|
-- Do not send telemetry data containing a randomized but unique identifier
|
|
|
|
telemetry = {
|
|
|
|
enable = false,
|
|
|
|
},
|
|
|
|
},
|
2022-11-02 09:05:01 +00:00
|
|
|
},
|
2022-11-07 16:13:13 +00:00
|
|
|
on_attach = on_attach,
|
|
|
|
flags = lsp_flags,
|
|
|
|
capabilities = capabilities,
|
2022-11-02 09:05:01 +00:00
|
|
|
}
|
2023-01-25 13:53:40 +00:00
|
|
|
|
|
|
|
require('lspconfig')['texlab'].setup {
|
|
|
|
on_attach = on_attach,
|
|
|
|
flags = lsp_flags,
|
|
|
|
capabilities = capabilities,
|
|
|
|
}
|