]> Git — Sourcephile - julm/julm-nix.git/blob - home-manager/profiles/nvim/lua/plugins/which-key.lua
neovim: configure, using ghostty and tmux
[julm/julm-nix.git] / home-manager / profiles / nvim / lua / plugins / which-key.lua
1 -- Create key bindings that stick.
2 -- WhichKey helps you remember your Neovim keymaps,
3 -- by showing available keybindings in a popup as you type.
4 -- https://github.com/folke/which-key.nvim
5 return {
6 "which-key.nvim",
7 event = "DeferredUIEnter",
8 cmd = "WhichKey",
9 after = function()
10 require("which-key").setup({
11 delay = 0,
12 -- HACK: Workaround for https://github.com/folke/which-key.nvim#967, might keep it anyway
13 show_help = false,
14 spec = { { "<leader>s", group = "Search" } },
15 preset = "helix",
16 })
17 end,
18 }