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
- Host: GitHub
- URL: https://github.com/rubyowo/lspdiags.nvim
- Owner: rubyowo
- License: agpl-3.0
- Created: 2022-09-02T04:52:53.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-03T09:08:08.000Z (almost 4 years ago)
- Last Synced: 2025-02-11T12:45:33.201Z (over 1 year ago)
- Language: Lua
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```lua
use({
"rubyowo/lspdiags.nvim",
})
```
```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
})
```