30 lines
1.2 KiB
Lua
30 lines
1.2 KiB
Lua
-- LSP format call with options
|
|
local lsp_formatting = function(bufnr)
|
|
vim.lsp.buf.format {
|
|
bufnr = bufnr,
|
|
timeout_ms = 2000,
|
|
async = true,
|
|
}
|
|
end
|
|
|
|
-- 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)
|
|
-- 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", "gr", vim.lsp.buf.references, bufopts)
|
|
vim.keymap.set("n", "gi", vim.lsp.buf.implementation, bufopts)
|
|
vim.keymap.set("n", "K", vim.lsp.buf.hover, 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)
|
|
if client.server_capabilities.documentSymbolProvider then
|
|
require("nvim-navic").attach(client, bufnr)
|
|
require("nvim-navbuddy").attach(client, bufnr)
|
|
end
|
|
end
|
|
return on_attach
|