18 lines
		
	
	
	
		
			551 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			551 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Exit if mc is active
 | 
						|
[[ -v MC_SID ]] && return
 | 
						|
 | 
						|
# source settings
 | 
						|
source ~/dotfiles/zsh/exports.zsh
 | 
						|
source ~/dotfiles/zsh/variables.zsh
 | 
						|
source ~/dotfiles/zsh/keybindings.zsh
 | 
						|
source ~/dotfiles/zsh/history.zsh
 | 
						|
source ~/dotfiles/zsh/aliases.zsh
 | 
						|
source ~/dotfiles/zsh/completions.zsh
 | 
						|
source ~/dotfiles/zsh/zplug.zsh
 | 
						|
source ~/dotfiles/zsh/neofetch.zsh
 | 
						|
source ~/dotfiles/zsh/ssh.zsh
 | 
						|
source ~/dotfiles/zsh/tasks.zsh
 | 
						|
source ~/dotfiles/zsh/tmux.zsh
 | 
						|
 | 
						|
# always execute powerlevel last to avoid problems with instant prompt
 | 
						|
source ~/dotfiles/zsh/powerlevel.zsh
 |