2022-08-10 08:20:23 +00:00
|
|
|
{pkgs, ...}: {
|
2022-08-09 15:30:56 +00:00
|
|
|
vim.keybindings.which-key-nvim = true;
|
|
|
|
|
|
|
|
plugin.setup.which-key = {
|
|
|
|
# Only start which-key.nvim for these keys
|
|
|
|
# I was getting sick and tired of it opening on random operators...
|
2022-08-10 08:20:23 +00:00
|
|
|
triggers = ["<leader>" "g" "z" "<C-w>" "\""];
|
2022-08-09 15:30:56 +00:00
|
|
|
};
|
|
|
|
}
|