Compare commits

..

No commits in common. "a6a3d3a7597227c50bf9ef58a6affc6ed9089beb" and "1280d2360d8decff39072f51fc02e43fc6dbb9d1" have entirely different histories.

4 changed files with 1 additions and 13 deletions

View File

@ -24,11 +24,8 @@ export PYTHONSTARTUP="${XDG_CONFIG_HOME:-$HOME/.config}/python/startup"
# Custom Python history file
export PYTHON_HISTFILE="${XDG_CACHE_HOME:-$HOME/.cache}/python/history"
# Pyenv root:
[ -x "$(command -v pyenv)" ] && export PYENV_ROOT="$HOME/.pyenv"
# PostgreSQL config file
[ -x "$(command -v psql)" ] && export PSQLRC="${XDG_CONFIG_HOME:-$HOME/.config}/psql/rc"
export PSQLRC="${XDG_CONFIG_HOME:-$HOME/.config}/psql/rc"
# Wget config file
export WGETRC="${XDG_CONFIG_HOME:-$HOME/.config}/wget/rc"

View File

@ -7,11 +7,3 @@ for file in ~/.config/shell/{path,exports,aliases,functions,extra}; do
[ -r "$file" ] && [ -f "$file" ] && source "$file";
done;
unset file;
source ~/.config/zsh/rc
# Setup pyenv, if it is installed:
if [ -x "$(command -v pyenv)" ]; then
eval "$(pyenv init --path)"
eval "$(pyenv init -)"
fi

View File

@ -1 +0,0 @@
.config/shell/profile