Show Diagnostic Messages Inline #97
-
Hello! 👋 By default, I see column signs for issues and can view diagnostic messages in a floating window via the How can change the behavior to instead show the diagnostic messages inline? I've tried setting Any help would be greatly appreciated. |
Beta Was this translation helpful? Give feedback.
Answered by
VonHeikemen
Dec 27, 2022
Replies: 1 comment 1 reply
-
I think you are looking for "virtual text". You can enable it using local lsp = require('lsp-zero')
lsp.preset('recommended')
lsp.setup()
vim.diagnostic.config({
virtual_text = true,
}) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think you are looking for "virtual text". You can enable it using
vim.diagnostic.config
.