mirror of
https://github.com/mintycube/dotfiles.git
synced 2024-10-22 14:05:41 +02:00
51 lines
1.5 KiB
Plaintext
51 lines
1.5 KiB
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Use neovim for vim if present.
|
||
|
[ -x "$(command -v nvim)" ] && alias vim="nvim" vimdiff="nvim -d"
|
||
|
|
||
|
# Use $XINITRC variable if file exists.
|
||
|
[ -f "$XINITRC" ] && alias startx="startx \$XINITRC"
|
||
|
|
||
|
alias svn="svn --config-dir \"$XDG_CONFIG_HOME\"/subversion"
|
||
|
|
||
|
# sudo not required for some system commands
|
||
|
for command in mount umount pacman updatedb su shutdown poweroff reboot; do
|
||
|
alias $command="sudo $command"
|
||
|
done
|
||
|
unset command
|
||
|
|
||
|
alias \
|
||
|
be="fzf-fd \$HOME/.local/bin | xargs nvim" \
|
||
|
yy="yazi" \
|
||
|
ce="fzf-fd \$HOME/.config | xargs nvim" \
|
||
|
cg="fzf-grep \$HOME/.config" \
|
||
|
fe="fzf-fd \$(pwd) | xargs nvim" \
|
||
|
fg="fzf-grep \$(pwd)" \
|
||
|
cp="cp -iv" \
|
||
|
mv="mv -iv" \
|
||
|
rm="rm -vI" \
|
||
|
ka="killall" \
|
||
|
g="git" \
|
||
|
sdn="shutdown -h now" \
|
||
|
v="\$EDITOR" \
|
||
|
p="pacman" \
|
||
|
z="zathura" \
|
||
|
x="exit" \
|
||
|
mkd="mkdir -pv" \
|
||
|
ls="eza --icons --group-directories-first" \
|
||
|
lss="lsd -lt --total-size --group-directories-first" \
|
||
|
lsa="eza -a --icons --group-directories-first" \
|
||
|
lsas="lsd -lAt --total-size --group-directories-first" \
|
||
|
lst="eza -T --icons" \
|
||
|
grep="grep --color=auto" \
|
||
|
diff="diff --color=auto" \
|
||
|
ccat="highlight --out-format=ansi" \
|
||
|
ip="ip -color=auto" \
|
||
|
cat="bat -pp" \
|
||
|
yt="yt-dlp --embed-metadata -i" \
|
||
|
yta="yt -x -f bestaudio/best" \
|
||
|
ffmpeg="ffmpeg -hide_banner" \
|
||
|
ref="shortcuts >/dev/null; source \${XDG_CONFIG_HOME:-\$HOME/.config}/shell/shortcutrc ; source \${XDG_CONFIG_HOME:-\$HOME/.config}/shell/zshnameddirrc" \
|
||
|
weath="curl wttr.in | head -n -1 | cat" \
|
||
|
weath2="curl v2.wttr.in | head -n -1 | cat"
|