Compare commits

..

No commits in common. "3eec1572850ba128906ce9e8baa63ae3f0b21474" and "f00062ec1bb7085524f8e25eecab78f914ae7371" have entirely different histories.

2 changed files with 2 additions and 44 deletions

View file

@ -2,24 +2,14 @@
local -a newbins local -a newbins
# docker
export DOCKER_CONFIG=$XDG_CONFIG_HOME/docker
# go # go
[[ -z $GOPATH ]] && export GOPATH=$XDG_DATA_HOME/go [[ -z $GOPATH ]] && export GOPATH=~/.go
newbins+=($XDG_DATA_HOME/go/bin) newbins+=(~/.go/bin)
# haskell # haskell
newbins+=(~/.cabal/bin ~/Library/Haskell/bin) newbins+=(~/.cabal/bin ~/Library/Haskell/bin)
export STACK_ROOT=$XDG_DATA_HOME/stack export STACK_ROOT=$XDG_DATA_HOME/stack
# less
# not exactly a 'lang' but still
export LESSHISTFILE=$XDG_DATA_HOME/less/history
# mysql
export MYSQL_HISTFILE=$XDG_DATA_HOME/mysql/history
# o'caml # o'caml
export OPAMROOT=$XDG_DATA_HOME/opam export OPAMROOT=$XDG_DATA_HOME/opam
[[ -f $OPAMROOT/opam-init/init.zsh ]] && source $OPAMROOT/opam-init/init.zsh [[ -f $OPAMROOT/opam-init/init.zsh ]] && source $OPAMROOT/opam-init/init.zsh
@ -33,9 +23,6 @@ fi
# ruby # ruby
newbins+=(~/.gem/ruby/*/bin(N) /usr/local/opt/ruby/bin /usr/local/lib/ruby/gems/*/bin(N)) newbins+=(~/.gem/ruby/*/bin(N) /usr/local/opt/ruby/bin /usr/local/lib/ruby/gems/*/bin(N))
export BUNDLE_USER_CONFIG=$XDG_CONFIG_HOME/bundle
export BUNDLE_USER_CACHE=$XDG_CACHE_HOME/bundle
export BUNDLE_USER_PLUGIN=$XDG_DATA_HOME/bundle
# rust # rust
export CARGO_HOME=$XDG_DATA_HOME/cargo export CARGO_HOME=$XDG_DATA_HOME/cargo
@ -58,9 +45,6 @@ export PHIVE_HOME=$XDG_DATA_HOME/phive
# there you go, I guess. # there you go, I guess.
newbins+=($XDG_CONFIG_HOME/composer/vendor/bin) newbins+=($XDG_CONFIG_HOME/composer/vendor/bin)
# postgres
export PSQL_HISTORY=$XDG_DATA_HOME/psql/history
# python # python
export -UT PYTHONPATH pythonpath export -UT PYTHONPATH pythonpath
newbins+=(~/Library/Python/*/bin(N)) newbins+=(~/Library/Python/*/bin(N))
@ -70,10 +54,4 @@ export PYENV_ROOT=$XDG_DATA_HOME/pyenv
export PYENV_SHELL=zsh export PYENV_SHELL=zsh
newbins+=($XDG_DATA_HOME/pyenv/shims $HOME/.poetry/bin) newbins+=($XDG_DATA_HOME/pyenv/shims $HOME/.poetry/bin)
# redis
export REDISCLI_HISTFILE=$XDG_DATA_HOME/redis/rediscli_history
# sqlite
export SQLITE_HISTORY=$XDG_DATA_HOME/sqlite/history
path=($newbins $path) path=($newbins $path)

20
zshenv
View file

@ -6,26 +6,6 @@
export XDG_CONFIG_HOME XDG_CACHE_HOME XDG_DATA_HOME XDG_STATE_HOME export XDG_CONFIG_HOME XDG_CACHE_HOME XDG_DATA_HOME XDG_STATE_HOME
# The other four XDG directories are very easy, but XDG_RUNTIME_DIR is
# complicated. It kinda needs to be managed by a systemwide supervisor, like
# systemd, in order to meet all of the XDG Base Directory specification's
# requirements? In particular, the directory is supposed to come into being
# when you log in, live as long as you have any active sessions, and be
# destroyed when you log out - none of this can easily be done from the shell
# environment alone, especially on an operating system like macOS where your
# graphical session wasn't spawned from a shell using something like .xinitrc.
#
# We're going to assume XDG_RUNTIME_DIR will have already be set by a
# systemwide supervisor if it can possibly have been. If it hasn't - say,
# because we're on macOS - we'll compromise by using TMPDIR. Since TMPDIR has
# a different lifetime than XDG_RUNTIME_DIR is supposed to, this is an
# imperfect solution, but it's the best we can do.
if [[ ! -d $XDG_RUNTIME_DIR ]] && [[ -d $TMPDIR ]]; then
export XDG_RUNTIME_DIR=${TMPDIR}xdg-$UID
mkdir -p $XDG_RUNTIME_DIR
chmod 0700 $XDG_RUNTIME_DIR
fi
# The real zsh config lives in XDG_CONFIG_HOME! ;) # The real zsh config lives in XDG_CONFIG_HOME! ;)
: ${ZDOTDIR:=$XDG_CONFIG_HOME/zsh} : ${ZDOTDIR:=$XDG_CONFIG_HOME/zsh}
source $ZDOTDIR/zshenv source $ZDOTDIR/zshenv