From cb43f3493cb9f2b426d7b851544ed623e5165fd8 Mon Sep 17 00:00:00 2001 From: Micah Halter Date: Tue, 14 May 2024 13:38:00 -0400 Subject: [PATCH] fix(vscode-icons): add missing VS Code icons --- .../recipes/vscode-icons/init.lua | 21 +++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/lua/astrocommunity/recipes/vscode-icons/init.lua b/lua/astrocommunity/recipes/vscode-icons/init.lua index 775f552d1..0e8ff4f6d 100644 --- a/lua/astrocommunity/recipes/vscode-icons/init.lua +++ b/lua/astrocommunity/recipes/vscode-icons/init.lua @@ -6,12 +6,16 @@ return { icons = { ActiveLSP = "", ActiveTS = " ", + ArrowLeft = "", + ArrowRight = "", + Bookmarks = "", BufferClose = "", DapBreakpoint = "", DapBreakpointCondition = "", DapBreakpointRejected = "", DapLogPoint = "", DapStopped = "", + Debugger = "", DefaultFile = "", Diagnostic = "", DiagnosticError = "", @@ -19,6 +23,7 @@ return { DiagnosticInfo = "", DiagnosticWarn = "", Ellipsis = "", + FileNew = "", FileModified = "", FileReadOnly = "", FoldClosed = "", @@ -38,14 +43,22 @@ return { GitUnstaged = "", GitUntracked = "", LSPLoaded = "", - LSPLoading1 = "", - LSPLoading2 = "", - LSPLoading3 = "", + LSPLoading1 = "", + LSPLoading2 = "", + LSPLoading3 = "", MacroRecording = "", + Package = "", Paste = "", + Refresh = "", Search = "", - Selected = "", + Selected = "", + Session = "", + Sort = "", + Spellcheck = "", TabClose = "", + Terminal = "", + Window = "", + WordFile = "", }, }, },