From b2cd7e23dce9f9fd46de3189cbe1f6de9356026d Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Fri, 14 Apr 2023 00:14:27 +0300 Subject: [PATCH] Update nvim dashboard icons --- home/.config/nvim/lua/plugins/dashboard.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/home/.config/nvim/lua/plugins/dashboard.lua b/home/.config/nvim/lua/plugins/dashboard.lua index 6d3881b..736abe9 100644 --- a/home/.config/nvim/lua/plugins/dashboard.lua +++ b/home/.config/nvim/lua/plugins/dashboard.lua @@ -6,16 +6,16 @@ return function() enable = true, }, shortcut = { - { desc = " Update", group = "@property", action = "Lazy update", key = "u" }, + { icon = "🧲 ", desc = "Update", group = "@property", action = "Lazy update", key = "u" }, { - icon = " ", + icon = "🖹 ", icon_hl = "@variable", desc = "Files", group = "Label", action = "Telescope find_files", key = "f", }, - { desc = "Quit", action = "q", key = "q" }, + { icon = "❌ ", desc = "Quit", action = "q", key = "q" }, }, }, })