feat: add which-key

This commit is contained in:
Mohammad Rafiq 2025-03-09 21:50:24 +08:00
parent 1ed7506ae5
commit f9a6e602d8
2 changed files with 9 additions and 3 deletions

View file

@ -1,11 +1,12 @@
{ inputs, ... }: {
imports = [
inputs.nixvim.homeManagerModules.nixvim
./nixvim/nvim-tree.nix # filetree
./nixvim/noice.nix # custom CMDLINE
./nixvim/lualine.nix # custom statusline
./nixvim/treesitter.nix # syntax highlighting
./nixvim/noice.nix # custom CMDLINE
./nixvim/nvim-tree.nix # filetree
./nixvim/treesitter-context.nix # context line
./nixvim/treesitter.nix # syntax highlighting
./nixvim/which-key.nix # show keybind hints
];
programs.nixvim = {
enable = true;

View file

@ -0,0 +1,5 @@
{
programs.nixvim.plugins.which-key = {
enable = true;
};
}