Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
a6a3d3a759 | |||
f526d17524 |
@ -24,8 +24,11 @@ export PYTHONSTARTUP="${XDG_CONFIG_HOME:-$HOME/.config}/python/startup"
|
|||||||
# Custom Python history file
|
# Custom Python history file
|
||||||
export PYTHON_HISTFILE="${XDG_CACHE_HOME:-$HOME/.cache}/python/history"
|
export PYTHON_HISTFILE="${XDG_CACHE_HOME:-$HOME/.cache}/python/history"
|
||||||
|
|
||||||
|
# Pyenv root:
|
||||||
|
[ -x "$(command -v pyenv)" ] && export PYENV_ROOT="$HOME/.pyenv"
|
||||||
|
|
||||||
# PostgreSQL config file
|
# PostgreSQL config file
|
||||||
export PSQLRC="${XDG_CONFIG_HOME:-$HOME/.config}/psql/rc"
|
[ -x "$(command -v psql)" ] && export PSQLRC="${XDG_CONFIG_HOME:-$HOME/.config}/psql/rc"
|
||||||
|
|
||||||
# Wget config file
|
# Wget config file
|
||||||
export WGETRC="${XDG_CONFIG_HOME:-$HOME/.config}/wget/rc"
|
export WGETRC="${XDG_CONFIG_HOME:-$HOME/.config}/wget/rc"
|
||||||
|
@ -7,3 +7,11 @@ for file in ~/.config/shell/{path,exports,aliases,functions,extra}; do
|
|||||||
[ -r "$file" ] && [ -f "$file" ] && source "$file";
|
[ -r "$file" ] && [ -f "$file" ] && source "$file";
|
||||||
done;
|
done;
|
||||||
unset file;
|
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
|
||||||
|
1
shell/.zprofile
Symbolic link
1
shell/.zprofile
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
.config/shell/profile
|
Loading…
Reference in New Issue
Block a user