Skip to content

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

License

Notifications You must be signed in to change notification settings

joehannes-os/nvim-docs-view

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nvim-docs-view

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

Inspired by the VSCode extension Docs View.

doc-view-example

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.

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Lua 100.0%