mirror of
				https://github.com/KevinMidboe/chsh.git
				synced 2025-10-29 12:30:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			374 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			374 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # remap previx from 'C-b' to 'C-a'
 | |
| unbind C-b
 | |
| set-option -g prefix C-a
 | |
| bind-key C-a send-prefix
 | |
| 
 | |
| set -g default-terminal "xterm-256color"
 | |
| 
 | |
| # switch panes using Alt-arrow without prefix
 | |
| bind -n M-Left select-pane -L
 | |
| bind -n M-Right select-pane -R
 | |
| bind -n M-Up select-pane -U
 | |
| bind -n M-Down select-pane -D
 | |
| 
 | |
| # scroll window buffer history, not commands history
 | |
| set -g mouse on
 |