felixalbpc/home/zsh/neovim: Various small QoL improvements and fixes

This commit is contained in:
2024-09-30 15:46:31 +02:00
parent 69949e872d
commit 56e92e70f1
4 changed files with 42 additions and 18 deletions

View File

@@ -39,23 +39,30 @@
zstyle ':completion:*' special-dirs true
export PATH="$HOME/.config/emacs/bin:$PATH"
unalias "gs"
if [ -f ~/.config/zsh-extras ]; then
source ~/.config/zsh-extras
fi
'';
shellAliases = {
l = "exa -l";
c = "z";
tree = "exa --tree --icons";
em = "emacsclient -c";
emnw = "emacsclient -nw";
grep = "grep --color=auto";
l = "exa -l";
ls = "ls --color=auto";
nd = "nix develop --command zsh";
s = "nix-shell --run zsh";
sp = "nix-shell --run zsh -p";
spu = "nix-shell -I nixpkgs=channel:nixos-unstable --run zsh -p";
nd = "nix develop --command zsh";
em = "emacsclient -c";
emnw = "emacsclient -nw";
gst = "git status -sb";
gcm = "git commit -m";
gps = "git push";
gpl = "git pull";
tree = "exa --tree --icons";
"git clone git clone" = "git clone";
gcm = "git commit -m";
gpl = "git pull";
gps = "git push";
gst = "git status -sb";
};
};