From 397937b59d51ef01f589ba13b8dbf6e53c420030 Mon Sep 17 00:00:00 2001 From: Roel de Cort Date: Thu, 16 May 2024 00:49:44 +0200 Subject: [PATCH] fix icon --- config/plugins/cmp/cmp.nix | 46 +++++++++++++++++----------------- config/plugins/cmp/lspkind.nix | 2 +- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/config/plugins/cmp/cmp.nix b/config/plugins/cmp/cmp.nix index ab7f766..1427c4b 100644 --- a/config/plugins/cmp/cmp.nix +++ b/config/plugins/cmp/cmp.nix @@ -61,30 +61,30 @@ luasnip = require("luasnip") kind_icons = { Text = "󰊄", - Method = "", - Function = "󰡱", - Constructor = "", - Field = "", - Variable = "󱀍", - Class = "", - Interface = "", - Module = "󰕳", - Property = "", - Unit = "", - Value = "", - Enum = "", - Keyword = "", - Snippet = "", - Color = "", + Method = " ", + Function = "󰡱 ", + Constructor = " ", + Field = " ", + Variable = "󱀍 ", + Class = " ", + Interface = " ", + Module = "󰕳 ", + Property = " ", + Unit = " ", + Value = " ", + Enum = " ", + Keyword = " ", + Snippet = " ", + Color = " ", File = "", - Reference = "", - Folder = "", - EnumMember = "", - Constant = "", - Struct = "", - Event = "", - Operator = "", - TypeParameter = "", + Reference = " ", + Folder = " ", + EnumMember = " ", + Constant = " ", + Struct = " ", + Event = " ", + Operator = " ", + TypeParameter = " ", } local cmp = require'cmp' diff --git a/config/plugins/cmp/lspkind.nix b/config/plugins/cmp/lspkind.nix index 69e8f78..73f2b1c 100644 --- a/config/plugins/cmp/lspkind.nix +++ b/config/plugins/cmp/lspkind.nix @@ -2,7 +2,7 @@ plugins.lspkind = { enable = true; symbolMap = { - Copilot = ""; + Copilot = " "; }; extraOptions = { maxwidth = 50;