feat: add which-key
This commit is contained in:
parent
1ed7506ae5
commit
f9a6e602d8
2 changed files with 9 additions and 3 deletions
|
@ -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;
|
||||
|
|
5
users/modules/programs/nixvim/which-key.nix
Normal file
5
users/modules/programs/nixvim/which-key.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
programs.nixvim.plugins.which-key = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue