Added oh-my-zsh plugins
This commit is contained in:
parent
24ae897664
commit
0782281a7d
3 changed files with 8 additions and 4 deletions
|
|
@ -60,7 +60,6 @@
|
||||||
thunderbird
|
thunderbird
|
||||||
whatsapp-for-linux
|
whatsapp-for-linux
|
||||||
zsh
|
zsh
|
||||||
zoxide
|
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,6 @@
|
||||||
tailscale
|
tailscale
|
||||||
tmux
|
tmux
|
||||||
wakeonlan
|
wakeonlan
|
||||||
zoxide
|
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
|
||||||
10
pkgs/zsh.nix
10
pkgs/zsh.nix
|
|
@ -18,10 +18,16 @@
|
||||||
|
|
||||||
ohMyZsh = {
|
ohMyZsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
plugins = ["git"];
|
plugins = [
|
||||||
|
"git"
|
||||||
|
"zsh-interactive-cd"
|
||||||
|
"python"
|
||||||
|
"marked2"
|
||||||
|
"git auto-fetch"
|
||||||
|
];
|
||||||
theme = "agnoster";
|
theme = "agnoster";
|
||||||
};
|
};
|
||||||
|
|
||||||
shellInit = "if [[ $(tty) == \"/dev/tty\"* ]]; then; bash; fi; eval \"$(zoxide init zsh --cmd cd)\"";
|
shellInit = "if [[ $(tty) == \"/dev/tty\"* ]]; then; bash; fi";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue