diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2021-11-06 09:34:56 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2021-11-06 09:34:56 +0100 |
commit | cca4faa1bf038bc102d60fdd6d08660923bfb8c9 (patch) | |
tree | 44e86dd7fbea5a67ee4dbff76d3a4e1e3f2dce64 | |
parent | 817f7b17d2f24c59b97a060fde8b25d9ee81a1af (diff) |
Remove cruft, virtualenvwrapper
pxz is obsolete, as xz now has a -T option for multithreading
-rw-r--r-- | bashrc | 20 |
1 files changed, 9 insertions, 11 deletions
@@ -12,21 +12,13 @@ else EDITOR=/usr/bin/vi fi fi +export EDITOR # }}} # R {{{ # littler scripts distributed with the littler package PATH=/usr/local/lib/R/site-library/littler/examples:"${PATH}" PATH=/usr/lib/R/site-library/littler/examples:"${PATH}" -# Go back -# RPython -#export RPYTHON_PYTHON_VERSION=3 - -# python3-uno from RPython -#PATH=/usr/lib/libreoffice/program:"${PATH}" - -alias tarxz='tar --use-compress-program=pxz -c -v -f' - # Path where the R sources are export RTOP=~/svn/R # }}} @@ -121,7 +113,13 @@ shopt -s checkwinsize # make less more friendly for non-text input files, see lesspipe(1) [ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)" # }}} -# {{{ PATH again +# {{{ local/bin PATH=~/.local/bin:"${PATH}" +export PATH +# }}} +# {{{ virtualenvwrapper +export WORKON_HOME=$HOME/.virtualenvs +export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python3 +export VIRTUALENVWRAPPER_VIRTUALENV_ARGS=' -p /usr/bin/python3 ' +source /usr/local/bin/virtualenvwrapper.sh # }}} -export EDITOR PATH |