26 lines
		
	
	
	
		
			696 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			696 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/usr/bin/env sh
 | |
| 
 | |
| [ -f "$HOME/.config/user-dirs.dirs" ] && source "$HOME/.config/user-dirs.dirs"
 | |
| 
 | |
| export CM_LAUNCHER='rofi'
 | |
| 
 | |
| 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 OSH="$HOME/.config/bash/oh-my-bash"
 | |
| 
 | |
| export PASSWORD_STORE_GENERATED_LENGTH='64'
 | |
| export PATH=/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin:$HOME/.local/bin:$GOPATH/bin
 | |
| 
 | |
| export VIMINIT="source $HOME/.config/vim/vimrc"
 | |
| 
 | |
| export ZDOTDIR="$HOME/.config/zsh"
 | |
| export ZSH="$ZDOTDIR/oh-my-zsh"
 |