2022-06-05 10:29:12 +02:00
2022-05-15 14:37:47 +02:00
2022-06-03 21:12:20 +02:00
2022-06-05 10:29:12 +02:00

nvim-docs-view

A neovim plugin to display lsp hover documentation in a side panel.

Inspired by the VSCode extension Docs View.

Installation

Using packer.nvim

use {
  "amrbashir/nvim-docs-view",
  opt = true,
  cmd = { "DocsViewToggle" },
  config = function()
    require("docs-view").setup {
      position = "right",
      width = 60,
    }
  end
}

Using vim-plug

Plug 'amrbashir/nvim-docs-view', { 'on': 'DocsViewToggle'}

lua << EOF
  require("docs-view").setup {
    position = "right",
    width = 60,
  }
EOF

Usage

Use :DocsViewToggle to open/close the docs view side panel

LICENSE

MIT License.

Description
A neovim plugin to display lsp hover documentation in a side panel.
Readme MIT 564 KiB
Languages
Lua 100%