summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/plugins/which-key.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/plugins/which-key.lua')
-rwxr-xr-x.config/nvim/lua/plugins/which-key.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins/which-key.lua b/.config/nvim/lua/plugins/which-key.lua
new file mode 100755
index 0000000..93e19f9
--- /dev/null
+++ b/.config/nvim/lua/plugins/which-key.lua
@@ -0,0 +1,13 @@
+require("which-key").setup{
+ window = {
+ position = "bottom", -- bottom, top
+ margin = { 1, 40, 1, 0 }, -- extra window margin [top, right, bottom, left]
+ padding = { 0, 0, 0, 0 }, -- extra window padding [top, right, bottom, left]
+ winblend = 0
+ },
+ icons = {
+ breadcrumb = ">", -- symbol used in the command line area that shows your active key combo
+ separator = ":", -- symbol used between a key and it's label
+ group = "+", -- symbol prepended to a group
+ },
+}
remember that computers suck.