103 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			103 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
# .zshenv [0] Used for setting user's environment variables; it should not
 | 
						|
# contain commands that produce output or assume the shell is attached to a
 | 
						|
# tty. This file will always be sourced.
 | 
						|
 | 
						|
# Enable saving command history to file
 | 
						|
[ ! -d $HOME/.cache/zsh ] && mkdir -p $HOME/.cache/zsh
 | 
						|
HISTFILE=$HOME/.cache/zsh/histfile
 | 
						|
HISTSIZE=20000
 | 
						|
SAVEHIST=20000
 | 
						|
 | 
						|
# Remove vi mode switch delay
 | 
						|
KEYTIMEOUT=1
 | 
						|
 | 
						|
# Enable time stats for long lasting commands
 | 
						|
REPORTTIME=5
 | 
						|
 | 
						|
# Add ~/.local to the environment
 | 
						|
fpath+=$HOME/.local/share/zsh/site-functions
 | 
						|
PATH=$HOME/.local/bin:$PATH
 | 
						|
MANPATH=$HOME/.local/share/man:$MANPATH
 | 
						|
INFOPATH=$HOME/.local/share/info:$INFOPATH
 | 
						|
 | 
						|
# Add ccache compiler aliases to PATH and use XDG base dir paths
 | 
						|
if [ `uname` = Darwin ]; then
 | 
						|
  [ -d /usr/local/opt/python/libexec/bin ] && \
 | 
						|
    PATH=/usr/local/opt/python/libexec/bin:$PATH
 | 
						|
  [ -f /usr/local/bin/ccache ] && \
 | 
						|
    PATH=/usr/local/opt/ccache/libexec:$PATH
 | 
						|
elif [ -f /usr/bin/ccache ]; then
 | 
						|
  if [ -d /usr/lib/ccache/bin ]; then
 | 
						|
    PATH=/usr/lib/ccache/bin:$PATH
 | 
						|
  elif [ -d /usr/lib/ccache ]; then
 | 
						|
    PATH=/usr/lib/ccache:$PATH
 | 
						|
  fi
 | 
						|
fi
 | 
						|
export CCACHE_CONFIGPATH=$HOME/.config/ccache
 | 
						|
export CCACHE_DIR=$HOME/.cache/ccache
 | 
						|
 | 
						|
# Add default CMake generator
 | 
						|
which ninja &> /dev/null && \
 | 
						|
  export CMAKE_GENERATOR=Ninja
 | 
						|
 | 
						|
# Remove duplicates from environment variables
 | 
						|
typeset -U fpath
 | 
						|
typeset -U PATH;      export PATH
 | 
						|
typeset -U MANPATH;   export MANPATH
 | 
						|
typeset -U INFOPATH;  export INFOPATH
 | 
						|
 | 
						|
# Set default editor.
 | 
						|
which vim &> /dev/null && \
 | 
						|
  export EDITOR=`which vim`
 | 
						|
 | 
						|
# Use ~/.local for pip installs on macOS
 | 
						|
[ "`uname`" = "Darwin" ] && export PYTHONUSERBASE=$HOME/.local
 | 
						|
 | 
						|
# Change colors used by less and man
 | 
						|
export LESS_TERMCAP_mb=`printf "\e[0;31m"`
 | 
						|
export LESS_TERMCAP_md=`printf "\e[0;36m"`
 | 
						|
export LESS_TERMCAP_me=`printf "\e[0m"`
 | 
						|
export LESS_TERMCAP_so=`printf "\e[1;40;32m"`
 | 
						|
export LESS_TERMCAP_se=`printf "\e[0m"`
 | 
						|
export LESS_TERMCAP_us=`printf "\e[0;34m"`
 | 
						|
export LESS_TERMCAP_ue=`printf "\e[0m"`
 | 
						|
# Disable storing less history
 | 
						|
export LESSHISTFILE=/dev/null
 | 
						|
 | 
						|
# Force GoogleTest to output colors
 | 
						|
export GTEST_COLOR=yes
 | 
						|
# Allow completions for GoogleTest break on failure
 | 
						|
export GTEST_BREAK_ON_FAILURE=0
 | 
						|
# Force CTest to verbose output
 | 
						|
export CTEST_OUTPUT_ON_FAILURE=1
 | 
						|
 | 
						|
# User ~/.local/share for persistent pylint data
 | 
						|
export PYLINTHOME=~/.local/share/pylint
 | 
						|
# Disable virtualenv prompt
 | 
						|
export VIRTUAL_ENV_DISABLE_PROMPT=1
 | 
						|
 | 
						|
# If pinentry-curses exists, use it for lastpass-cli
 | 
						|
which pinentry-curses &> /dev/null && \
 | 
						|
  export LPASS_PINENTRY=pinentry-curses
 | 
						|
 | 
						|
# Teach these some XDG Base Directory Spec manners
 | 
						|
export IPYTHONDIR=$HOME/.config/ipython
 | 
						|
which cargo &> /dev/null && \
 | 
						|
  export CARGO_HOME=$HOME/.local/share/cargo
 | 
						|
if which ccache &> /dev/null; then
 | 
						|
  export CCACHE_CONFIGPATH=$HOME/.config/ccache.conf
 | 
						|
  export CCACHE_DIR=$HOME/.cache/ccache
 | 
						|
fi
 | 
						|
which conan &> /dev/null && \
 | 
						|
  export CONAN_USER_HOME=$HOME/.local/share/conan
 | 
						|
which docker &> /dev/null && \
 | 
						|
  export DOCKER_CONFIG=$HOME/.local/share/docker
 | 
						|
export GTK_RC_FILES=$HOME/.config/gtk/gtkrc
 | 
						|
export GTK2_RC_FILES=$HOME/.config/gtk-2.0/gtkrc
 | 
						|
which rustup &> /dev/null && \
 | 
						|
  export RUSTUP_HOME=$HOME/.local/share/rustup
 | 
						|
export PYLINTHOME=$HOME/.cache/pylint
 | 
						|
# TODO: terminfo
 | 
						|
[ -f $HOME/.config/wgetrc ] &&
 | 
						|
  export WGETRC=$HOME/.config/wgetrc
 |