Skip to content

Commit

Permalink
Added pip config
Browse files Browse the repository at this point in the history
Like with the configs for gem and npm (the other language package managers)
there is now a (currently) empty config for pip.
  • Loading branch information
jdost committed Sep 10, 2013
1 parent 6f0b15d commit 35638a2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions environment/term
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ export VIRTUALENVWRAPPER_LOG_DIR=$HOME/.local/virtualenvs
export NPM_CONFIG_CACHE=$HOME/.cache/npm
export NPM_CONFIG_USERCONFIG=$XDG_CONFIG_HOME/npmrc

export PIP_CONFIG_FILE=$XDG_CONFIG_HOME/pip.conf

#export PATH=~/.bin:$PATH:~/.cabal/bin:/usr/local/heroku/bin
[[ $PATH != *$HOME/.bin* ]] && export PATH=~/.bin:$PATH
[[ $PATH != *.cabal* ]] && export PATH=$PATH:~/.cabal/bin
Expand Down
Empty file added pip/pip.conf
Empty file.
8 changes: 6 additions & 2 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ link() {
buildHZSH
#linkIfNot environment/env_def $HOME/.env/def

# Language package managers
linkIfNot gem/gemrc $HOME/.gemrc
linkIfNot npm/npmrc $XDG_CONFIG_HOME/npmrc
linkIfNot pip/pip.conf $XDG_CONFIG_HOME/pip.conf

# Apps
linkIfNot screen/screenrc $HOME/.screenrc
linkIfNot tmux/tmux.conf $HOME/.tmux.conf
Expand All @@ -44,8 +49,7 @@ link() {
linkIfNot git/gitignore $HOME/.gitignore
linkIfNot ack/ackrc $XDG_CONFIG_HOME/ackrc
linkIfNot mutt $HOME/.mutt
linkIfNot gem/gemrc $HOME/.gemrc
linkIfNot npm/npmrc $XDG_CONFIG_HOME/npmrc

linkIfNot weechat $XDG_CONFIG_HOME/weechat
#linkIfNot irssi $HOME/.irssi
linkIfNot ncmpcpp $XDG_CONFIG_HOME/ncmpcpp
Expand Down

0 comments on commit 35638a2

Please sign in to comment.