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"; + }; + }; +}