mirror of
https://github.com/Xevion/dotfiles.git
synced 2026-01-31 04:24:10 -06:00
refactor: standardize shell initialization and improve PATH management
- Consolidate common environment setup across Fish, Bash, and PowerShell - Improve PATH handling with deduplication and proper ordering - Clean up TODO.md formatting and organization - Simplify CUDA and development tool configuration
This commit is contained in:
@@ -110,9 +110,7 @@ mktouch() { mkdir -p $(dirname $1) && touch $1; }
|
||||
# When in the appropriate KiTTy terminal, use the SSH kitten
|
||||
[ "$TERM" = "xterm-kitty" ] && alias ssh="kitty +kitten ssh"
|
||||
|
||||
# ----------------------
|
||||
# Git Aliases
|
||||
# ----------------------
|
||||
# Git aliases
|
||||
alias ga='git add'
|
||||
alias gaa='git add .'
|
||||
alias gaaa='git add --all'
|
||||
@@ -147,8 +145,5 @@ alias gstl='git stash list'
|
||||
alias gstp='git stash pop'
|
||||
alias gsts='git stash save'
|
||||
|
||||
# ----------------------
|
||||
# Git Functions
|
||||
# ----------------------
|
||||
# Git log find by commit message
|
||||
function glf() { git log --all --grep="$1"; }
|
||||
|
||||
Reference in New Issue
Block a user