From 940a165c88a0c429e99e6fc51ad1504a54e1b1c7 Mon Sep 17 00:00:00 2001 From: pika Date: Sun, 25 Aug 2024 17:09:37 +0200 Subject: [PATCH] addet correct lsp symbol --- lua/pika/plugins/bufferline.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/pika/plugins/bufferline.lua b/lua/pika/plugins/bufferline.lua index 63e53c4..0a8c69a 100644 --- a/lua/pika/plugins/bufferline.lua +++ b/lua/pika/plugins/bufferline.lua @@ -7,7 +7,7 @@ return { diagnostics = "nvim_lsp", diagnostics_update_on_event = true, -- use nvim's diagnostic handler diagnostics_indicator = function(count, level) - local icon = level:match("error") and " " or "" + local icon = level:match("error") and " " or " " return " " .. icon .. count end, offsets = { { filetype = "neo-tree", text = "File Explorer", highlight = "Directory" } },