-
-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(tiny-inline-diagnostic-nvim): add
tiny-inline-diagnostic-nvim
- Loading branch information
1 parent
99cd785
commit c17e131
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
lua/astrocommunity/diagnostics/tiny-inline-diagnostic-nvim/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# tiny-inline-diagnostic.nvim | ||
|
||
A Neovim plugin that display prettier diagnostic messages. Display one line diagnostic messages where the cursor is, with icons and colors. | ||
|
||
**Repository:** <https://github.com/rachartier/tiny-inline-diagnostic.nvim> | ||
|
||
_Note_: This sets the Astrocore diagnostics to level 2 |
14 changes: 14 additions & 0 deletions
14
lua/astrocommunity/diagnostics/tiny-inline-diagnostic-nvim/init.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
return { | ||
"rachartier/tiny-inline-diagnostic.nvim", | ||
event = "VeryLazy", | ||
dependencies = { | ||
"astronvim/astrocore", | ||
opts = { | ||
features = { | ||
-- Disable diagnostics virtual textto prevet duplicates | ||
diagnostics_mode = 2, | ||
}, | ||
}, | ||
}, | ||
opts = {}, | ||
} |