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 }, })