Skip to content

Commit

Permalink
update: hover.nvim still unstable
Browse files Browse the repository at this point in the history
  • Loading branch information
aceforeverd committed Nov 12, 2023
1 parent ce16b20 commit 4c11208
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions lua/aceforeverd/lsp/common.lua
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ local lsp_maps = {
end,
['gr'] = [[<cmd>FzfLua lsp_references<CR>]],
['<leader>gd'] = vim.lsp.buf.definition,
['<leader>K'] = vim.lsp.buf.hover,
['<leader>gK'] = vim.lsp.buf.signature_help,
['K'] = vim.lsp.buf.hover,
['gK'] = vim.lsp.buf.signature_help,
['<leader>gi'] = vim.lsp.buf.implementation,
['<leader>gr'] = vim.lsp.buf.references,
['<Leader>wa'] = vim.lsp.buf.add_workspace_folder,
Expand Down
7 changes: 4 additions & 3 deletions lua/aceforeverd/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -320,8 +320,8 @@ M.plugin_list = {
})
end,
keys = {
{ 'K', function() require('hover').hover() end, desc = 'hover.nvim' },
{ 'gK', function() require('hover').hover_select() end, desc = 'hover.nvim (select)' },
{ '<leader>K', function() require('hover').hover() end, desc = 'hover.nvim' },
{ '<leader>gK', function() require('hover').hover_select() end, desc = 'hover.nvim (select)' },
}
},

Expand Down Expand Up @@ -612,7 +612,7 @@ M.plugin_list = {
'chrisgrieser/nvim-spider',
config = function()
require('spider').setup({
skipInsignificantPunctuation = true,
skipInsignificantPunctuation = false,
})
end,
keys = {
Expand All @@ -626,6 +626,7 @@ M.plugin_list = {
{
'rlane/pounce.nvim',
cmd = { 'Pounce', 'PounceRepeat', 'PounceReg', 'PounceExpand' },
keys = { { mode = { 'n', 'x', 'o' }, ';p', '<cmd>Pounce<cr>', desc = 'Pounce' } }
},
-- ==============================================
-- MOTIONS END
Expand Down

0 comments on commit 4c11208

Please sign in to comment.