feat(home): zsh plugins

This commit is contained in:
Sangmin Kim 2026-03-05 11:06:24 +09:00 committed by Poby
parent 2c941797dc
commit 6e73c7e5a8
No known key found for this signature in database
2 changed files with 8 additions and 4 deletions

View file

@ -20,6 +20,7 @@
./ghostty.nix
./bat.nix
./aerospace.nix
# TODO ./pass.nix
];
home = {

View file

@ -6,6 +6,8 @@
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
defaultKeymap = "viins";
history = {
size = 10000;
save = 10000;
@ -17,8 +19,8 @@
shellAliases = {
poby = "echo my name is poby";
drs = "sudo darwin-rebuild switch --flake ~/nix-darwin#$(hostname)";
drt = "sudo darwin-rebuild test --flake ~/nix-darwin#$(hostname)";
drs = "sudo darwin-rebuild switch --flake ~/nix-darwin#$(hostname)"; # TODO change to just script
drt = "sudo darwin-rebuild test --flake ~/nix-darwin#$(hostname)"; # TODO change to just script
};
sessionVariables = {
@ -30,9 +32,10 @@
theme = "robbyrussell";
plugins = [
"git"
"gitignore"
"history"
"zoxide"
"eza"
"sudo"
"vi-mode"
];
};
};