Skip to content

Commit

Permalink
fix(which-key): remove separator icon when icons are disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Apr 1, 2024
1 parent d9592cd commit 281606e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/astronvim/plugins/which-key.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ return {
"folke/which-key.nvim",
event = "VeryLazy",
opts = {
icons = { group = vim.g.icons_enabled ~= false and "" or "+", separator = "" },
icons = vim.g.icons_enabled ~= false and { group = "", separator = "" } or { group = "+", separator = "-" },
disable = { filetypes = { "TelescopePrompt" } },
},
}

0 comments on commit 281606e

Please sign in to comment.