nvim/lua/plugins/lsp/keymaps.lua

40 lines
1.3 KiB
Lua
Raw Permalink Normal View History

local M = {}
function M.on_attach(bufnr)
local telescope = require('utils').telescope
local function map(key, rhs, desc)
vim.keymap.set('n', key, rhs, {
silent = true,
buffer = bufnr,
desc = desc,
})
end
map('K', vim.lsp.buf.hover, 'hover')
map('<leader>lf', vim.lsp.buf.format, 'format')
map('<leader>lD', vim.lsp.buf.declaration, 'declaration')
map('<leader>ld', telescope 'lsp_definitions', 'definition')
map('<leader>li', telescope 'lsp_implementations', 'implementation')
map('<leader>lt', telescope 'lsp_type_definitions', 'type defintion')
map('<leader>lr', telescope 'lsp_references', 'references')
map('<leader>ly', telescope 'lsp_document_symbols', 'LSP symbols')
map('<leader>ln', vim.lsp.buf.rename, 'rename')
map('<leader>la', vim.lsp.buf.code_action, 'action')
map('<leader>lp', vim.diagnostic.goto_prev, 'previous diagnostic')
map('<leader>ll', vim.diagnostic.goto_next, 'next diagnostic')
map('<leader>lw', telescope 'diagnostics', 'diagnostics list')
2024-05-22 16:31:09 +02:00
map('<leader>le', '<cmd>Telescope diagnostics bufnr=0<cr>', 'diagnostics list')
map('<leader>ls', function()
vim.diagnostic.open_float { scope = 'cursor' }
end, 'cursor diagnostic')
map('<leader>lS', function()
vim.diagnostic.open_float { scope = 'line' }
end, 'line diagnostics')
end
return M