From f76d95e482579e43278e930685c9ce1de6ec4a2e Mon Sep 17 00:00:00 2001 From: David JULIEN Date: Thu, 10 Nov 2022 20:42:38 +0100 Subject: [PATCH] [nvim] feat: update packer icons during update --- .config/nvim/lua/plugin/packer.lua | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.config/nvim/lua/plugin/packer.lua b/.config/nvim/lua/plugin/packer.lua index 16cda69..987a6ef 100644 --- a/.config/nvim/lua/plugin/packer.lua +++ b/.config/nvim/lua/plugin/packer.lua @@ -22,12 +22,12 @@ end packer.init({ display = { - working_sym = 'o', -- The symbol for a plugin being installed/updated - error_sym = '', -- The symbol for a plugin with an error in installation/updating - done_sym = '✓', -- The symbol for a plugin which has completed installation/updating - removed_sym = '-', -- The symbol for an unused plugin which was removed - moved_sym = '→', -- The symbol for a plugin which was moved (e.g. from opt to start) - header_sym = '━', -- The symbol for the header line in packer's display + working_sym = ' ', -- The symbol for a plugin being installed/updated + error_sym = ' ', -- The symbol for a plugin with an error in installation/updating + done_sym = ' ', -- The symbol for a plugin which has completed installation/updating + removed_sym = '- ', -- The symbol for an unused plugin which was removed + moved_sym = '→ ', -- The symbol for a plugin which was moved (e.g. from opt to start) + header_sym = '━ ', -- The symbol for the header line in packer's display }, })