From e4aa8189054a8f42a3f63d2b7cbebe1470733b03 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Fri, 28 Jul 2023 09:04:45 +0200 Subject: [PATCH] feat(nvim): adapt diagnostics icons to terminal font --- home-manager/neovim/lspconfig.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home-manager/neovim/lspconfig.lua b/home-manager/neovim/lspconfig.lua index 8db0ef1..700c1cf 100644 --- a/home-manager/neovim/lspconfig.lua +++ b/home-manager/neovim/lspconfig.lua @@ -172,7 +172,7 @@ vim.diagnostic.config({ }) -- setup diagnostics signs -local diagnostics_signs = { Error = "", Want = "", Hint = "", Info = "" } +local diagnostics_signs = { Error = "", Warn = "", Hint = "", Info = "" } for type, icon in pairs(diagnostics_signs) do local hl = "DiagnosticSign" .. type vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = hl })