1
0
Fork 0
dotfiles/home/config/nvim/plugins/hover.fnl
Daniel Kempkens e5e206a0c0
All checks were successful
Build / build-arm64-linux (push) Successful in 8m14s
Build / build-amd64-linux (push) Successful in 20m50s
nvim: use hover.nvim
2024-07-10 00:45:24 +02:00

9 lines
330 B
Fennel

(let [hover (require :hover)]
(hover.setup {:init #(do
(require :hover.providers.lsp)
(require :hover.providers.diagnostic))
:preview_opts {:border :single}
:preview_window false
:title true
:mouse_providers []}))