While playing around with neovide, I learned that processes can reasonably expect non-login shells to print nothing except commands to execute. This change modifies zshrc to only print tmux sessions (something I only care about when I start a shell myself) in LOGIN shells.
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			162 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			162 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Eryn Wells <eryn@erynwells.me>
 | 
						|
 | 
						|
zsh_init_profile_functions=( \
 | 
						|
    connect_ssh_agent \
 | 
						|
    init_profile_$SYS \
 | 
						|
)
 | 
						|
 | 
						|
do_init_functions zsh_init_profile_functions
 | 
						|
 |