mirror of
				https://github.com/KevinMidboe/chsh.git
				synced 2025-10-29 12:30:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			336 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			336 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# remap previx from 'C-b' to 'F10' and should
 | 
						|
# map caps-lock to F10
 | 
						|
unbind-key C-b
 | 
						|
set-option -g prefix F10
 | 
						|
bind-key F10 send-prefix
 | 
						|
 | 
						|
# Remove delay
 | 
						|
set -s escape-time 1
 | 
						|
 | 
						|
# scroll window buffer history, not commands history
 | 
						|
set -g mouse on
 | 
						|
 | 
						|
set -g default-terminal "xterm-256color"
 | 
						|
# set-option -g default-shell /opt/homebrew/bin/fish
 |