An open API service indexing awesome lists of open source software.

https://github.com/rubyowo/lspdiags.nvim

A plugin that uses a quickfix list to show project diagnostics
https://github.com/rubyowo/lspdiags.nvim

Last synced: about 1 year ago
JSON representation

A plugin that uses a quickfix list to show project diagnostics

Awesome Lists containing this project

README

          

# lspdiags.nvim
A simple plugin that uses a quickfix list to show project diagnostics

## Dependencies
- [plenary.nvim](https://github.com/nvim-lua/plenary.nvim)

## Installation

Install with your preferred package manager

packer.nvim

```lua
use({
"rubyowo/lspdiags.nvim",
})
```

vim-plug

```vim
Plug 'rubyowo/lspdiags.nvim'
```

## Configuration
The default settings for the plugin:
```lua
require('lspdiags').setup({
debounce = 150, -- only update the list at most every `debounce` ms
triggers = { -- The autocommands to register
'WinEnter',
'BufEnter',
'DiagnosticChanged',
},
auto_open = false, -- automatically open the list when you have diagnostics
auto_close = false, -- automatically close the list when you have no diagnostics
})
```