diff --git a/site-modules/core/files/vim/plugin/lsp.lua b/site-modules/core/files/vim/plugin/lsp.lua index 68122c0..0387d66 100644 --- a/site-modules/core/files/vim/plugin/lsp.lua +++ b/site-modules/core/files/vim/plugin/lsp.lua @@ -113,12 +113,12 @@ end require("ionide").setup({ on_attach = on_attach, capabilities = capabilities }) -- Change the diagnostic signs -vim.fn.sign_define("DiagnosticSignHint", { text = "➤", texthl = "DiagnosticSignHint", numhl = "DiagnosticSignHint" }) -vim.fn.sign_define("DiagnosticSignInfo", { text = "ℹ", texthl = "DiagnosticSignInfo", numhl = "DiagnosticSignInfo" }) -vim.fn.sign_define("DiagnosticSignWarn", { text = "⚠", texthl = "DiagnosticSignWarn", numhl = "DiagnosticSignWarn" }) +vim.fn.sign_define("DiagnosticSignHint", { text = "", texthl = "DiagnosticSignHint", numhl = "DiagnosticSignHint" }) +vim.fn.sign_define("DiagnosticSignInfo", { text = "", texthl = "DiagnosticSignInfo", numhl = "DiagnosticSignInfo" }) +vim.fn.sign_define("DiagnosticSignWarn", { text = "", texthl = "DiagnosticSignWarn", numhl = "DiagnosticSignWarn" }) vim.fn.sign_define( "DiagnosticSignError", - { text = "✖", texthl = "DiagnosticSignError", numhl = "DiagnosticSignError" } + { text = "", texthl = "DiagnosticSignError", numhl = "DiagnosticSignError" } ) local border = "rounded" @@ -132,6 +132,9 @@ vim.diagnostic.config { focusable = false, border = border, }, + virtual_text = { + prefix = " ", + }, } vim.cmd [[set updatetime=1000]]