From 3ff6d04d297aafb25bdd1e520e8f6857408b4090 Mon Sep 17 00:00:00 2001 From: Superredstone Date: Sat, 23 May 2026 13:14:32 +0200 Subject: [PATCH] feat(plugin): set which-key preset to modern --- config/plugins/default.nix | 2 +- config/plugins/which-key.nix | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 config/plugins/which-key.nix diff --git a/config/plugins/default.nix b/config/plugins/default.nix index 001f5ad..9f83f87 100644 --- a/config/plugins/default.nix +++ b/config/plugins/default.nix @@ -9,6 +9,7 @@ ./lsp.nix ./lualine.nix ./telescope.nix + ./which-key.nix ]; plugins = { @@ -16,7 +17,6 @@ web-devicons.enable = true; bufferline.enable = true; nvim-autopairs.enable = true; - which-key.enable = true; notify.enable = true; toggleterm.enable = true; treesitter.enable = true; diff --git a/config/plugins/which-key.nix b/config/plugins/which-key.nix new file mode 100644 index 0000000..8a41800 --- /dev/null +++ b/config/plugins/which-key.nix @@ -0,0 +1,9 @@ +{ ... }: +{ + plugins.which-key = { + enable = true; + settings = { + preset = "modern"; + }; + }; +}