aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/home/.config/nvim/lua
diff options
context:
space:
mode:
Diffstat (limited to 'home/.config/nvim/lua')
-rw-r--r--home/.config/nvim/lua/custom/plugins/lsp.lua45
1 files changed, 0 insertions, 45 deletions
diff --git a/home/.config/nvim/lua/custom/plugins/lsp.lua b/home/.config/nvim/lua/custom/plugins/lsp.lua
index ec11fbc..585c285 100644
--- a/home/.config/nvim/lua/custom/plugins/lsp.lua
+++ b/home/.config/nvim/lua/custom/plugins/lsp.lua
@@ -9,51 +9,6 @@ return {
},
},
{
- "lewis6991/hover.nvim",
- keys = {
- {
- "K",
- function()
- require("hover").open()
- end,
- desc = "Hover",
- },
- {
- "gK",
- function()
- require("hover").enter()
- end,
- desc = "Hover Enter",
- },
- {
- "gh",
- function()
- require("hover").open()
- end,
- desc = "[H]over",
- },
- },
- config = function()
- require("hover").config({
- --- List of modules names to load as providers.
- --- @type (string|Hover.Config.Provider)[]
- providers = {
- "hover.providers.diagnostic",
- "hover.providers.lsp",
- "hover.providers.dap",
- "hover.providers.man",
- "hover.providers.dictionary",
- -- Optional, disabled by default:
- "hover.providers.gh",
- -- 'hover.providers.gh_user',
- -- 'hover.providers.jira',
- "hover.providers.fold_preview",
- -- 'hover.providers.highlight',
- },
- })
- end,
- },
- {
"neovim/nvim-lspconfig",
version = false,
dependencies = {