mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-22 20:32:59 +09:00
feat(home): zsh plugins
This commit is contained in:
parent
2c941797dc
commit
6e73c7e5a8
2 changed files with 8 additions and 4 deletions
|
|
@ -20,6 +20,7 @@
|
||||||
./ghostty.nix
|
./ghostty.nix
|
||||||
./bat.nix
|
./bat.nix
|
||||||
./aerospace.nix
|
./aerospace.nix
|
||||||
|
# TODO ./pass.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
|
|
|
||||||
11
home/zsh.nix
11
home/zsh.nix
|
|
@ -6,6 +6,8 @@
|
||||||
autosuggestion.enable = true;
|
autosuggestion.enable = true;
|
||||||
syntaxHighlighting.enable = true;
|
syntaxHighlighting.enable = true;
|
||||||
|
|
||||||
|
defaultKeymap = "viins";
|
||||||
|
|
||||||
history = {
|
history = {
|
||||||
size = 10000;
|
size = 10000;
|
||||||
save = 10000;
|
save = 10000;
|
||||||
|
|
@ -17,8 +19,8 @@
|
||||||
|
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
poby = "echo my name is poby";
|
poby = "echo my name is poby";
|
||||||
drs = "sudo darwin-rebuild switch --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)";
|
drt = "sudo darwin-rebuild test --flake ~/nix-darwin#$(hostname)"; # TODO change to just script
|
||||||
};
|
};
|
||||||
|
|
||||||
sessionVariables = {
|
sessionVariables = {
|
||||||
|
|
@ -30,9 +32,10 @@
|
||||||
theme = "robbyrussell";
|
theme = "robbyrussell";
|
||||||
plugins = [
|
plugins = [
|
||||||
"git"
|
"git"
|
||||||
|
"gitignore"
|
||||||
"history"
|
"history"
|
||||||
"zoxide"
|
"sudo"
|
||||||
"eza"
|
"vi-mode"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue