31 lines
		
	
	
	
		
			749 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			749 B
		
	
	
	
		
			Text
		
	
	
	
	
	
alias beep='printf "\007"'
 | 
						|
alias cower='command cower -c'
 | 
						|
alias fixterm='printf "c"'
 | 
						|
alias less='command less -R'
 | 
						|
alias mysql='command mysql --sigint-ignore'
 | 
						|
alias pacman='command pacman --color=auto'
 | 
						|
alias rgrep='command grep --exclude-dir=\.git -R'
 | 
						|
alias tailf='command less -R +F'
 | 
						|
alias vi='command vim'
 | 
						|
alias whence='type -P'
 | 
						|
 | 
						|
# ls
 | 
						|
alias ls='command ls --color=auto --group-directories-first '
 | 
						|
alias ll='ls -lha'
 | 
						|
 | 
						|
# git
 | 
						|
alias gci='command git commit'
 | 
						|
alias gsl='command git stash list'
 | 
						|
alias gss='command git status -sbu'
 | 
						|
alias gup='command git pull'
 | 
						|
 | 
						|
# tig
 | 
						|
alias gsi='command tig status'
 | 
						|
 | 
						|
# tmux
 | 
						|
alias tmux='command tmux -2'
 | 
						|
alias atmux='command tmux -2 attach'
 | 
						|
 | 
						|
# screen
 | 
						|
alias rscreen='command screen -Dr'
 | 
						|
alias scr='command screen sudo -Es'
 |