jinzhongjia / LspUI.nvim

A modern and useful UI plugin that wraps lsp operations.
MIT License
158 stars 4 forks source link
neovim-lua-plugin neovim-plugin

LspUI.nvim

A plugin which wraps Neovim LSP operations with a nicer UI.

✨ Features

📦 Installation

lazy.nvim

{
  "jinzhongjia/LspUI.nvim",
  branch = "main",
  config = function()
    require("LspUI").setup({
      -- config options go here
      })
  end
}

packer.nvim

use {
  "jinzhongjia/LspUI.nvim",
    branch = 'main',
    config = function()
    require("LspUI").setup({
      -- config options go here
      })
  end
}

⚙️ Configuration

local LspUI = require("LspUI")
LspUI.setup()

more about here

🚀Commands

Screen Shot

Current Goals / Roadmap

You can see the current goals here.

Reference