Skip to content

Commit

Permalink
fix(which-key): use a more minimal which-key separator
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Apr 1, 2024
1 parent 61e05d4 commit a5be725
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lua/astronvim/plugins/which-key.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ return {
"folke/which-key.nvim",
event = "VeryLazy",
opts = {
icons = vim.g.icons_enabled ~= false and { group = "", separator = "" } or { group = "+", separator = "-" },
icons = {
group = vim.g.icons_enabled ~= false and "" or "+",
separator = "-",
},
disable = { filetypes = { "TelescopePrompt" } },
},
}

0 comments on commit a5be725

Please sign in to comment.