mirror of
https://github.com/tiyn/nvim-docs-view.git
synced 2025-11-13 05:49:45 +01:00
794 B
794 B
nvim-docs-view
A neovim plugin to display lsp hover documentation in a side panel.
Inspired by the VSCode extension Docs View.
Installation
Using vim-plug
Plug 'amrbashir/nvim-docs-view'
lua << EOF
require("docs-view").setup {
position = "right",
width = 300,
}
EOF
Using packer.nvim
use {
"amrbashir/nvim-docs-view",
config = function()
require("docs-view").setup {
position = "right",
width = 300,
}
end
}
Usage
Use :DocsViewShow to open the docs view side panel
LICENSE
MIT License © 2021 Amr Bashir