mirror of https://github.com/nirenjan/dotfiles.git
				
				
				
			
		
			
				
	
	
		
			15 lines
		
	
	
		
			386 B
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			386 B
		
	
	
	
		
			Plaintext
		
	
	
| # ls aliases
 | |
| alias ll='ls -l'
 | |
| 
 | |
| # Git aliases
 | |
| alias tgp='time git pull'
 | |
| alias gf='git fetch'
 | |
| 
 | |
| # Tmux aliases
 | |
| # Use this to launch in 16-color mode
 | |
| alias tmux='TERM=screen-256color-bce tmux -2 -u'
 | |
| # Attach to an existing tmux session
 | |
| alias work='TERM=screen-256color-bce tmux -2 -u attach -d'
 | |
| # Trigger tmux to reopen the socket if it cannot attach
 | |
| alias kick='pkill -USR1 -u $USER tmux'
 |