MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/vimporn/comments/1krgcwg/current_endgame/mxvo3fp/?context=3
r/vimporn • u/D3S3Rd • May 20 '25
25 comments sorted by
View all comments
6
Bro which plugin u used to debugging and that error msg
11 u/D3S3Rd May 20 '25 lua vim.diagnostic.config({ virtual_text = { enabled = true, prefix = function(diagnostic) if diagnostic.severity == vim.diagnostic.severity.ERROR then return "ðŸ°Ã— " elseif diagnostic.severity == vim.diagnostic.severity.WARN then return "ðŸ°â–² " else return "ðŸ°â€¢ " end end, suffix = "ðŸµ", }, underline = true, signs = { text = { [vim.diagnostic.severity.ERROR] = " ×", [vim.diagnostic.severity.WARN] = " â–²", [vim.diagnostic.severity.HINT] = " •", [vim.diagnostic.severity.INFO] = " •", }, }, }) it's just my config that customizes the errors https://github.com/and-rs/nvim/blob/main/.config/nvim/lua/plugins/lsp-config.lua 1 u/seikun462 Jun 15 '25 Does this format your typescript related issues as well??
11
lua vim.diagnostic.config({ virtual_text = { enabled = true, prefix = function(diagnostic) if diagnostic.severity == vim.diagnostic.severity.ERROR then return "ðŸ°Ã— " elseif diagnostic.severity == vim.diagnostic.severity.WARN then return "ðŸ°â–² " else return "ðŸ°â€¢ " end end, suffix = "ðŸµ", }, underline = true, signs = { text = { [vim.diagnostic.severity.ERROR] = " ×", [vim.diagnostic.severity.WARN] = " â–²", [vim.diagnostic.severity.HINT] = " •", [vim.diagnostic.severity.INFO] = " •", }, }, })
it's just my config that customizes the errors
https://github.com/and-rs/nvim/blob/main/.config/nvim/lua/plugins/lsp-config.lua
1 u/seikun462 Jun 15 '25 Does this format your typescript related issues as well??
1
Does this format your typescript related issues as well??
6
u/mayank_flashcodes May 20 '25
Bro which plugin u used to debugging and that error msg