feat(plugin): set which-key preset to modern

This commit is contained in:
2026-05-23 13:14:32 +02:00
parent 6e24563b45
commit 3ff6d04d29
2 changed files with 10 additions and 1 deletions
+1 -1
View File
@@ -9,6 +9,7 @@
./lsp.nix ./lsp.nix
./lualine.nix ./lualine.nix
./telescope.nix ./telescope.nix
./which-key.nix
]; ];
plugins = { plugins = {
@@ -16,7 +17,6 @@
web-devicons.enable = true; web-devicons.enable = true;
bufferline.enable = true; bufferline.enable = true;
nvim-autopairs.enable = true; nvim-autopairs.enable = true;
which-key.enable = true;
notify.enable = true; notify.enable = true;
toggleterm.enable = true; toggleterm.enable = true;
treesitter.enable = true; treesitter.enable = true;
+9
View File
@@ -0,0 +1,9 @@
{ ... }:
{
plugins.which-key = {
enable = true;
settings = {
preset = "modern";
};
};
}