22 lines
		
	
	
		
			485 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			485 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # ~/.zshrc
 | |
| 
 | |
| # Path to the dotfiles
 | |
| DOTFILES=$HOME/.config/dotfiles
 | |
| DISABLE_AUTO_UPDATE="true"
 | |
| 
 | |
| # Path to your oh-my-zsh configuration
 | |
| ZSH=$HOME/.config/oh-my-zsh
 | |
| ZSH_CUSTOM=$HOME/.config/dotfiles/zsh/oh-my-zsh
 | |
| 
 | |
| ZSH_THEME="laptop"
 | |
| 
 | |
| source $DOTFILES/zsh/config.zsh
 | |
| source $DOTFILES/zsh/path.zsh
 | |
| source $DOTFILES/zsh/exports.zsh
 | |
| source $DOTFILES/zsh/aliases.zsh
 | |
| source $DOTFILES/zsh/functions.zsh
 | |
| 
 | |
| if [ -f $DOTFILES/zsh/extraconfig.zsh ]; then
 | |
|     source $DOTFILES/zsh/extraconfig.zsh
 | |
| fi
 |