gdritter repos dotfiles / fe48922
clean up that too Getty Ritter 11 days ago
1 changed file(s) with 3 addition(s) and 16 deletion(s). Collapse all Expand all
22
33 # User specific aliases and functions
44 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 guil='command -v mosh 2>&1 1>/dev/null && mosh guildenstern || ssh guildenstern'
5 alias la='eza -a'
6 alias ll='eza --git -l'
107 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'
158 alias objdump='objdump -M intel'
16 alias bigterm='urxvt -fn "xft:Fira Code:size=28"'
17 alias hex2raw="tr -d '\\\x' | xxd -r -p"
189
1910 export EDITOR="emacs -nw"
2011 export BASHFILESIZE=50000
2213
2314 # allow different machines to customize their tmux colors
2415 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 fi
16 tmux set-option -a status-style bg=red
3017 fi