feat: add agentic plugin to nvim
This commit is contained in:
parent
e40e98533c
commit
76cf8e414f
4 changed files with 68 additions and 36 deletions
|
|
@ -5,7 +5,7 @@
|
|||
{
|
||||
imports = [
|
||||
./gnome
|
||||
./vim.nix
|
||||
./nvim
|
||||
./zsh.nix
|
||||
];
|
||||
|
||||
|
|
@ -20,6 +20,7 @@
|
|||
"steam-original"
|
||||
"steam-run"
|
||||
"steamtinkerlaunch"
|
||||
"ollama-cuda"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
@ -43,6 +44,7 @@
|
|||
nixfmt-rfc-style
|
||||
nordic
|
||||
obsidian
|
||||
ollama-cuda
|
||||
pinentry-curses
|
||||
python3
|
||||
ripgrep
|
||||
|
|
@ -52,6 +54,7 @@
|
|||
unzip
|
||||
waydroid
|
||||
wl-clipboard
|
||||
zed-editor
|
||||
];
|
||||
username = "thiago";
|
||||
};
|
||||
|
|
@ -80,11 +83,16 @@
|
|||
lfs.enable = true;
|
||||
signing = {
|
||||
key = "EC7C84664FF515B63AD510B63065EA73A976D430";
|
||||
signByDefault = true;
|
||||
signByDefault = false;
|
||||
};
|
||||
userEmail = "th.spo@pm.me";
|
||||
userName = "Thiago Sposito";
|
||||
};
|
||||
|
||||
gpg = {
|
||||
enable = true;
|
||||
package = pkgs.gnupg;
|
||||
};
|
||||
|
||||
home-manager.enable = true;
|
||||
|
||||
|
|
@ -116,6 +124,12 @@
|
|||
};
|
||||
};
|
||||
|
||||
services.gpg-agent = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
pinentry.package = pkgs.pinentry-curses;
|
||||
};
|
||||
|
||||
systemd.user.startServices = "sd-switch";
|
||||
home.stateVersion = "25.11";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue