From 9e8675d17e5db297ce4e7191612c9eb7f396aa7d Mon Sep 17 00:00:00 2001 From: Jan Eitzinger Date: Mon, 18 Mar 2024 21:02:55 +0100 Subject: [PATCH] Update kind icons --- dot_config/nvim/lua/plugins/coding.lua.tmpl | 46 ++++++++++----------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/dot_config/nvim/lua/plugins/coding.lua.tmpl b/dot_config/nvim/lua/plugins/coding.lua.tmpl index ae5b19a..4f2a635 100644 --- a/dot_config/nvim/lua/plugins/coding.lua.tmpl +++ b/dot_config/nvim/lua/plugins/coding.lua.tmpl @@ -46,30 +46,30 @@ return { opts = function() vim.api.nvim_set_hl(0, "CmpGhostText", { link = "Comment", default = true }) local kind_icons = { - Text = "", - Method = "󰆧", - Function = "󰊕", - Constructor = "", - Field = "󰇽", - Variable = "󰂡", - Class = "󰠱", - Interface = "", - Module = "", - Property = "󰜢", + Text = " ", + Method = " ", + Function = " ", + Constructor = " ", + Field = " ", + Variable = " ", + Class = " ", + Interface = " ", + Module = " ", + Property = " ", Unit = "", - Value = "󰎠", - Enum = "", - Keyword = "󰌋", - Snippet = "", - Color = "󰏘", - File = "󰈙", - Reference = "", - Folder = "󰉋", - EnumMember = "", - Constant = "󰏿", - Struct = "", - Event = "", - Operator = "󰆕", + Value = " ", + Enum = " ", + Keyword = " ", + Snippet = " ", + Color = " ", + File = " ", + Reference = " ", + Folder = " ", + EnumMember = " ", + Constant = " ", + Struct = " ", + Event = " ", + Operator = " ", TypeParameter = "󰅲", }