added the zk note taking assistant.

This commit is contained in:
Gabe Venberg 2025-02-24 18:52:46 +01:00
parent e8a5bb3bc9
commit d2fdaf9611
5 changed files with 66 additions and 3 deletions

View file

@ -41,6 +41,7 @@
./gitsigns.nix
./which-key.nix
./telescope.nix
./zk.nix
./treesitter
./cmp
./lsp

View file

@ -0,0 +1,12 @@
{
config,
lib,
pkgs,
...
}: {
config = lib.mkIf config.user.nvim.enable {
programs.nixvim = {
plugins.zk.enable = true;
};
};
}