From 70abc1f30f772757088b13d97256423385156080 Mon Sep 17 00:00:00 2001 From: Squibid Date: Wed, 15 Feb 2023 23:11:33 -0500 Subject: Major changes including better ui and more keybinds :) --- lua/core/overrides/hover.lua | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lua/core/overrides/hover.lua (limited to 'lua/core/overrides/hover.lua') diff --git a/lua/core/overrides/hover.lua b/lua/core/overrides/hover.lua new file mode 100644 index 0000000..9e8a684 --- /dev/null +++ b/lua/core/overrides/hover.lua @@ -0,0 +1,18 @@ +require("hover").setup { + init = function() + -- Require providers + require("hover.providers.lsp") + -- require('hover.providers.gh') + -- require('hover.providers.gh_user') + -- require('hover.providers.jira') + require('hover.providers.man') + require('hover.providers.dictionary') + end, + preview_opts = { + border = 'single' + }, + -- Whether the contents of a currently open hover window should be moved + -- to a :h preview-window when pressing the hover keymap. + preview_window = true, + title = true +} -- cgit v1.2.1