mirror of https://github.com/LazyVim/starter
feat: add inline diagnostic
parent
297e75d62e
commit
9bd364373d
|
@ -37,6 +37,21 @@ return {
|
||||||
{
|
{
|
||||||
"Tastyep/structlog.nvim",
|
"Tastyep/structlog.nvim",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"rachartier/tiny-inline-diagnostic.nvim",
|
||||||
|
event = "VeryLazy",
|
||||||
|
opts = {
|
||||||
|
signs = {
|
||||||
|
left = "",
|
||||||
|
right = "",
|
||||||
|
diag = "●",
|
||||||
|
arrow = " ",
|
||||||
|
up_arrow = " ",
|
||||||
|
vertical = " │",
|
||||||
|
vertical_end = " ╰",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
-- TS / JS
|
-- TS / JS
|
||||||
{
|
{
|
||||||
"dmmulroy/tsc.nvim",
|
"dmmulroy/tsc.nvim",
|
||||||
|
|
|
@ -180,6 +180,14 @@ return {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"nvim-lspconfig",
|
||||||
|
opts = {
|
||||||
|
diagnostics = {
|
||||||
|
virtual_text = false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"mfussenegger/nvim-dap",
|
"mfussenegger/nvim-dap",
|
||||||
opts = {
|
opts = {
|
||||||
|
|
Loading…
Reference in New Issue