22 lines
		
	
	
	
		
			580 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			580 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/usr/bin/env sh
 | |
| 
 | |
| [ -f "$HOME/.config/user-dirs.dirs" ] && source $HOME/.config/user-dirs.dirs
 | |
| 
 | |
| export EDITOR='/usr/bin/vim'
 | |
| 
 | |
| export GOPATH="$HOME/.local/share/go"
 | |
| 
 | |
| export MAKEFLAGS="-j$(grep -c ^processor /proc/cpuinfo)"
 | |
| 
 | |
| export MAILCAPS="$HOME/.config/mailcap/mailcaprc"
 | |
| export MARKPATH="$HOME/.config/zsh/jump_marks"
 | |
| 
 | |
| export NOTMUCH_CONFIG="$HOME/.config/notmuch/config"
 | |
| 
 | |
| export PASSWORD_STORE_GENERATED_LENGTH='64'
 | |
| 
 | |
| export PATH=/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin:$HOME/.local/bin
 | |
| 
 | |
| export VIMINIT="source $HOME/.config/vim/vimrc"
 | |
| 
 | |
| export ZDOTDIR="$HOME/.config/zsh"
 |