nvim/lua/my-lsp.lua

77 lines
3 KiB
Lua
Raw Normal View History

2023-02-13 23:19:02 +00:00
--local lsp_status = require('lsp-status')
2022-02-07 10:52:43 +00:00
2023-02-13 23:19:02 +00:00
--lsp_status.register_progress()
2021-08-11 10:25:50 +00:00
2023-02-26 21:07:32 +00:00
local map = vim.keymap.set
map("n", "<leader>dr", function() require("dap").repl.toggle() end, { silent = true })
2021-08-11 10:25:50 +00: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)
2023-02-13 23:19:02 +00:00
local function buf_set_option(...) vim.api.nvim_buf_set_option(bufnr, ...) end
2021-08-11 10:25:50 +00:00
2023-02-13 23:19:02 +00:00
--Enable completion triggered by <c-x><c-o>
vim.bo[bufnr].omnifunc = 'v:lua.vim.lsp.omnifunc'
2021-08-11 10:25:50 +00:00
2023-02-13 23:19:02 +00:00
-- Mappings.
2023-02-26 21:07:32 +00:00
local opts = { silent = true, buffer = bufnr }
local loud = { buffer = bufnr }
2021-08-11 10:25:50 +00:00
2023-02-13 23:19:02 +00:00
-- See `:help vim.lsp.*` for documentation on any of the below functions
map('n', 'gD', vim.lsp.buf.declaration, opts)
map('n', 'gd', vim.lsp.buf.definition, opts)
map('n', 'K', vim.lsp.buf.hover, opts)
map('v', 'K', vim.lsp.buf.hover, opts)
map('n', 'gi', vim.lsp.buf.implementation, opts)
map('n', '<C-k>', vim.lsp.buf.signature_help, opts)
map('n', '<Leader>D', vim.lsp.buf.type_definition, opts)
map('n', '<Leader>rn', vim.lsp.buf.rename, opts)
2023-02-26 21:07:32 +00:00
map('n', '<M-x>', vim.lsp.buf.code_action, loud)
2023-02-13 23:19:02 +00:00
map('n', '<M-s>', vim.lsp.codelens.run, loud)
map('n', 'gr', vim.lsp.buf.references, opts)
map('n', '<M-e>', vim.diagnostic.open_float, opts)
map('n', '[d', vim.diagnostic.goto_prev, opts)
map('n', ']d', vim.diagnostic.goto_next, opts)
map('n', '<M-q>', vim.diagnostic.setloclist, opts)
2023-02-26 21:07:32 +00:00
map("n", "<Leader>f", function() vim.lsp.buf.format { async = true } end, opts)
2023-02-13 23:19:02 +00:00
map("n", "<leader>dc", function() require("dap").continue() end, opts)
map("n", "<leader>dK", function() require("dap.ui.widgets").hover() end, opts)
map("n", "<leader>dt", function() require("dap").toggle_breakpoint() end, opts)
map("n", "<leader>dso", function() require("dap").step_over() end, opts)
map("n", "<leader>dsi", function() require("dap").step_into() end, opts)
map("n", "<leader>dl", function() require("dap").run_last() end, opts)
2022-02-07 10:52:43 +00:00
2023-02-13 23:19:02 +00:00
map("n", "<leader>aa", vim.diagnostic.setqflist, opts)
map("n", "<leader>aw", function() vim.diagnostic.setqflist({ severity = "W" }) end, opts)
map("n", "<leader>ae", function() vim.diagnostic.setqflist({ severity = "E" }) end, opts)
2022-02-07 10:52:43 +00:00
2023-02-26 21:07:32 +00:00
vim.cmd [[autocmd BufEnter,BufWrite <buffer> lua vim.lsp.codelens.refresh()]]
vim.cmd [[autocmd CursorHoldI * silent! lua vim.lsp.buf.signature_help()]]
2023-02-13 23:19:02 +00:00
vim.cmd [[autocmd CursorHold * lua vim.diagnostic.open_float({max_width = 100, focusable = false})]]
2023-02-26 21:07:32 +00:00
vim.lsp.codelens.refresh()
2021-08-11 10:25:50 +00:00
end
2023-02-26 21:07:32 +00:00
require("lsp.installer")(on_attach)
2023-01-23 13:38:50 +00:00
require("lsp.metals")(on_attach)
require("lsp.typescript")(on_attach)
2021-08-11 10:25:50 +00:00
vim.lsp.handlers["textDocument/publishDiagnostics"] = vim.lsp.with(
2022-02-07 10:52:43 +00:00
vim.lsp.diagnostic.on_publish_diagnostics, {
2023-02-26 21:07:32 +00:00
virtual_text = false,
underline = true,
signs = true,
}
2022-02-07 10:52:43 +00:00
)
vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with(
vim.lsp.handlers.signature_help, {
2023-02-26 21:07:32 +00:00
silent = true, focusable = false
}
2021-08-11 10:25:50 +00:00
)
2023-02-25 14:22:32 +00:00
local signature_help_cfg = {}
require "lsp_signature".setup(signature_help_cfg)
2023-02-26 21:07:32 +00:00
return { on_attach = on_attach }