From dedf12ee043076a04fd475ebdb84b4f50b5bb66c Mon Sep 17 00:00:00 2001 From: Manuuurino <2855338+manuuurino@users.noreply.github.com> Date: Tue, 9 Apr 2024 19:41:40 +0200 Subject: [PATCH] feat(vscode-icons): add more and update lspkind icons (#851) --- .../recipes/vscode-icons/init.lua | 34 ++++++++++++++----- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/lua/astrocommunity/recipes/vscode-icons/init.lua b/lua/astrocommunity/recipes/vscode-icons/init.lua index 9aeef4f58..775f552d1 100644 --- a/lua/astrocommunity/recipes/vscode-icons/init.lua +++ b/lua/astrocommunity/recipes/vscode-icons/init.lua @@ -56,15 +56,31 @@ return { opts.preset = "codicons" -- set some missing symbol types opts.symbol_map = { - Array = "", - Boolean = "", - Key = "", - Namespace = "", - Null = "", - Number = "", - Object = "", - Package = "", - String = "", + Text = " ", + Method = " ", + Function = " ", + Constructor = " ", + Field = " ", + Variable = " ", + Class = " ", + Interface = " ", + Module = " ", + Property = " ", + Unit = " ", + Value = " ", + Enum = " ", + Keyword = " ", + Snippet = " ", + Color = " ", + File = " ", + Reference = " ", + Folder = " ", + EnumMember = " ", + Constant = " ", + Struct = " ", + Event = " ", + Operator = " ", + TypeParameter = " ", } end, },