diff options
| author | pml68 <contact@pml68.dev> | 2025-04-05 11:20:47 +0200 |
|---|---|---|
| committer | pml68 <contact@pml68.dev> | 2025-04-05 11:20:47 +0200 |
| commit | f171e7871fc2ddc102e18a6a2de1ee6e850d62cb (patch) | |
| tree | 20c7d161f63f4b8c21c80867bfa980e7c698e39a | |
| parent | refactor: just some generic stuff (diff) | |
| download | nvim-f171e7871fc2ddc102e18a6a2de1ee6e850d62cb.tar.gz | |
feat: remove keymaps (they're mapped in 0.11 by default) [skip ci]
| -rw-r--r-- | lua/pml68/remap.lua | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lua/pml68/remap.lua b/lua/pml68/remap.lua index 7f110ff..f33dffa 100644 --- a/lua/pml68/remap.lua +++ b/lua/pml68/remap.lua @@ -107,12 +107,9 @@ vim.api.nvim_create_autocmd('LspAttach', { vim.keymap.set('n', 'gd', '<cmd>lua vim.lsp.buf.definition()<CR>', opts) vim.keymap.set('n', 'gD', '<cmd>lua vim.lsp.buf.declaration()<CR>', opts) - vim.keymap.set('n', 'gi', '<cmd>lua vim.lsp.buf.implementation()<CR>', opts) vim.keymap.set('n', 'go', '<cmd>lua vim.lsp.buf.type_definition()<CR>', opts) - vim.keymap.set('n', 'gr', '<cmd>lua vim.lsp.buf.references()<CR>', opts) vim.keymap.set('n', 'gs', '<cmd>lua vim.lsp.buf.signature_help()<CR>', opts) vim.keymap.set({ 'n', 'x' }, '<S-f>', '<cmd>lua vim.lsp.buf.format({async = true})<CR>', opts) - vim.keymap.set('n', 'gc', '<cmd>lua vim.lsp.buf.code_action()<CR>', opts) -- u/Blan_11 vim.keymap.set('n', '<leader>lh', function() vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled()) |
