clean up that too
Getty Ritter
11 days ago
| 2 | 2 | |
| 3 | 3 | # User specific aliases and functions |
| 4 | 4 | alias cl=clear |
| 5 | alias la='exa -a' | |
| 6 | alias ll='exa --git -l' | |
| 7 | alias lpdup='lpr -o sides=two-sided-long-edge -P hp4200n' | |
| 8 | alias ros='command -v mosh 2>&1 1>/dev/null && mosh rosencrantz || ssh rosencrantz' | |
| 9 |
alias |
|
| 5 | alias la='eza -a' | |
| 6 | alias ll='eza --git -l' | |
| 10 | 7 | alias evil='EVIL=true emacs' |
| 11 | alias evilmacs='EVIL=true emacs' | |
| 12 | alias bigmacs='BIG=true emacs' | |
| 13 | alias textmacs='NARROW=true emacs' | |
| 14 | alias em='EVIL=true BARE=true emacs' | |
| 15 | 8 | alias objdump='objdump -M intel' |
| 16 | alias bigterm='urxvt -fn "xft:Fira Code:size=28"' | |
| 17 | alias hex2raw="tr -d '\\\x' | xxd -r -p" | |
| 18 | 9 | |
| 19 | 10 | export EDITOR="emacs -nw" |
| 20 | 11 | export BASHFILESIZE=50000 |
| 22 | 13 | |
| 23 | 14 | # allow different machines to customize their tmux colors |
| 24 | 15 | if [ -n "$TMUX" ]; then |
| 25 | if [ -e "$HOME/.tmux-color" ]; then | |
| 26 | tmux set-option -a status-style bg="$(cat ~/.tmux-color)" | |
| 27 | else | |
| 28 | tmux set-option -a status-style bg=red | |
| 29 |
|
|
| 16 | tmux set-option -a status-style bg=red | |
| 30 | 17 | fi |