chore: format everything with stylua and update

This commit is contained in:
Alexander Gehrke 2025-02-26 11:22:27 +01:00
parent 473d78494e
commit e90763e223
22 changed files with 273 additions and 222 deletions

View file

@ -1,23 +1,23 @@
return {
"lewis6991/hover.nvim",
config = function()
require("hover").setup {
require("hover").setup({
init = function()
require("hover.providers.lsp")
require('hover.providers.gh')
require('hover.providers.man')
require("hover.providers.gh")
require("hover.providers.man")
end,
preview_opts = {
border = nil
border = nil,
},
-- Whether the contents of a currently open hover window should be moved
-- to a :h preview-window when pressing the hover keymap.
preview_window = false,
title = true
}
title = true,
})
-- Setup keymaps
vim.keymap.set("n", "K", require("hover").hover, { desc = "hover.nvim" })
vim.keymap.set("n", "gK", require("hover").hover_select, { desc = "hover.nvim (select)" })
end
end,
}