34 lines
		
	
	
	
		
			881 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			881 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| . "$HOME/.config/user-dirs.dirs"
 | |
| . "$XDG_CONFIG_HOME/locale.conf"
 | |
| 
 | |
| export CM_LAUNCHER='rofi'
 | |
| 
 | |
| export DRONE_SERVER='https://ci.serguzim.me'
 | |
| 
 | |
| export EDITOR='/usr/bin/vim'
 | |
| 
 | |
| export GOPATH="$XDG_DATA_HOME/go"
 | |
| 
 | |
| export MAKEFLAGS="-j$(grep -c ^processor /proc/cpuinfo)"
 | |
| 
 | |
| export MAILCAPS="$XDG_CONFIG_HOME/mailcap/mailcaprc"
 | |
| export MARKPATH="$XDG_CONFIG_HOME/zsh/jump_marks"
 | |
| 
 | |
| export NOTMUCH_CONFIG="$XDG_CONFIG_HOME/notmuch/config"
 | |
| 
 | |
| export OPENFAAS_URL="https://faas.serguzim.me"
 | |
| export OSH="$XDG_CONFIG_HOME/bash/oh-my-bash"
 | |
| 
 | |
| export PASSWORD_STORE_GENERATED_LENGTH='64'
 | |
| export PATH=$HOME/.local/bin:/usr/local/bin:/usr/bin:/usr/sbin:/bin:/sbin:$GOPATH/bin
 | |
| 
 | |
| export VIMINIT="source $XDG_CONFIG_HOME/vim/vimrc"
 | |
| 
 | |
| export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
 | |
| export ZSH="$ZDOTDIR/oh-my-zsh"
 | |
| 
 | |
| ### conditionals
 | |
| 
 | |
| [ -x "$(command -v bat)" ] && export MANPAGER="sh -c 'col -bx | bat -l man -p'"
 |