Cleanup and lockfile update

This commit is contained in:
Alexander Gehrke 2023-08-28 10:36:18 +02:00
parent eb8a2a698a
commit 381fb51b80
4 changed files with 25 additions and 23 deletions

View file

@ -1 +0,0 @@
require('my-lsp')

View file

@ -14,8 +14,6 @@ local on_attach = function(args)
map("n", "<leader>dr", function() require("dap").repl.toggle() end, { silent = true })
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)