This commit is contained in:
2025-06-20 22:19:09 +01:00
parent 7e141486f3
commit 27440c772b
7 changed files with 35 additions and 5 deletions

View File

@@ -22,7 +22,9 @@ alias \
yt="youtube-dl --add-metadata -i" \
yta="yt -x -f bestaudio/best" \
ffmpeg="ffmpeg -hide_banner" \
tmux="tmux -f ~/.config/tmux/tmux.conf"
tmux="tmux -f ~/.config/tmux/tmux.conf" \
aider="aider --config ~/.config/aider/aider.yaml"
# Colorize commands when possible.
alias \
@@ -83,7 +85,9 @@ alias \
dgit="git --git-dir ~/.config/dotfiles/.git --work-tree=$HOME" \
.z="source ~/.config/shell/profile" \
.a="source ~/.config/shell/aliasrc" \
testmic="arecord -vv -f dat /dev/null"
testmic="arecord -vv -f dat /dev/null" \
notes="cd ~/Tower/Notes && nvim ." \
aid="aider"
# Dev
alias \
@@ -112,7 +116,7 @@ function dut() {
function gh() {
local -a commands=(
"Recover deleted file: git checkout HEAD~1 -- <file>"
"Recover deleted file: git checkout HEAD -- <file>"
"Revert previous commit keeping changes: git revert --no-commit HEAD~1"
"Undo merge/pull that caused conflicts: git revert -m 1 HEAD~1"
"Abort rebase: git rebase --abort"