diff options
Diffstat (limited to 'after/plugin/whichkey.lua')
-rw-r--r-- | after/plugin/whichkey.lua | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/after/plugin/whichkey.lua b/after/plugin/whichkey.lua deleted file mode 100644 index 752bc95..0000000 --- a/after/plugin/whichkey.lua +++ /dev/null @@ -1,21 +0,0 @@ -local status_ok, whichkey = pcall(require, "which-key") -if not status_ok then - return -end - -whichkey.setup { - icons = { - breadcrumb = '>>', - separator = '->', - }, - winblend = 0, - window = { - border = 'shadow', - margin = { 1, .1, 2, .1 }, - - }, - layout = { - width = { min = 20, max = 50 }, - align = 'center', - } -} |