https://github.com/williamboman/warden.nvim
Enhanced diagnostics UI for Neovim. 🚧 Highly WIP. Publicly available to make it easier for me to clone.
https://github.com/williamboman/warden.nvim
Last synced: 10 months ago
JSON representation
Enhanced diagnostics UI for Neovim. 🚧 Highly WIP. Publicly available to make it easier for me to clone.
- Host: GitHub
- URL: https://github.com/williamboman/warden.nvim
- Owner: williamboman
- License: apache-2.0
- Created: 2023-02-06T19:00:44.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-06T19:17:43.000Z (almost 3 years ago)
- Last Synced: 2025-03-19T06:39:03.458Z (10 months ago)
- Language: Lua
- Homepage:
- Size: 5.86 KB
- Stars: 22
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# warden.nvim
> Enhanced diagnostics UI for Neovim. 🚧 Highly WIP. Publicly available to make it easier for me to clone.
> Aims to gracefully support multiple diagnostics sources (e.g. multiple LSP servers).
## Screenshots

## Setup
```lua
vim.diagnostic.config {
warden = {
line_highlight = true,
},
}
```
## TODO
### Right-aligned messages
As opposed to the builtin `virtual_text` handler, this will also merge diagnostics from multiple sources and display the
most severe one (the `virtual_text` handler only displays whichever diagnostic was received last). This will also
include an indicator symbol showing how many more diagnostics (and their severity) that have been truncated on a given
line.
