File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 1+ # hover.nvim
2+
3+ Hover plugin framework for Neovim
4+
5+ ** Repository:** < https://github.com/lewis6991/hover.nvim >
Original file line number Diff line number Diff line change 1+ return {
2+ " lewis6991/hover.nvim" ,
3+ lazy = true ,
4+ specs = {
5+ {
6+ " AstroNvim/astrocore" ,
7+ opts = {
8+ options = { opt = { mousemoveevent = true } },
9+ mappings = {
10+ n = {
11+ K = { function () require (" hover" ).hover () end , desc = " Hover cursor" },
12+ gK = { function () require (" hover" ).hover_select () end , desc = " Hover selection" },
13+ [" ]h" ] = { function () require (" hover" ).hover_switch " next" end , desc = " Next hover source" },
14+ [" [h" ] = { function () require (" hover" ).hover_switch " previous" end , desc = " Previous hover source" },
15+ [" <MouseMove>" ] = { function () require (" hover" ).hover_mouse () end , desc = " Hover mouse" },
16+ },
17+ },
18+ },
19+ },
20+ {
21+ " AstroNvim/astrolsp" ,
22+ opts = { mappings = { n = { K = false } } },
23+ },
24+ },
25+ opts = {
26+ init = function () require " hover.providers.lsp" end ,
27+ },
28+ }
You can’t perform that action at this time.
0 commit comments