zsh: add zoxide. worf: remove vscode, add alacritty
This commit is contained in:
parent
e96146640d
commit
7fa70ff8ce
|
@ -41,6 +41,7 @@
|
||||||
|
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
l = "exa -l";
|
l = "exa -l";
|
||||||
|
c = "z";
|
||||||
tree = "exa --tree --icons";
|
tree = "exa --tree --icons";
|
||||||
s = "nix-shell --run zsh";
|
s = "nix-shell --run zsh";
|
||||||
sp = "nix-shell --run zsh -p";
|
sp = "nix-shell --run zsh -p";
|
||||||
|
@ -52,5 +53,10 @@
|
||||||
gpl = "git pull";
|
gpl = "git pull";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
zoxide = {
|
||||||
|
enable = true;
|
||||||
|
enableZshIntegration = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
alacritty
|
||||||
bat
|
bat
|
||||||
bottom
|
bottom
|
||||||
cocoapods
|
cocoapods
|
||||||
|
@ -23,7 +24,6 @@
|
||||||
# unstable.ripes
|
# unstable.ripes
|
||||||
spotify
|
spotify
|
||||||
tldr
|
tldr
|
||||||
vscode
|
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
|
|
Loading…
Reference in New Issue