-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbashrc_exports
86 lines (74 loc) · 3.38 KB
/
bashrc_exports
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
export PATH=$PATH:~/.local/bin
#export PATH="${PATH}:~/.local/bin"
#export GOPATH=$HOME/.go
#export PATH=$PATH:/usr/local/go/bin
#export PATH=$PATH:${GOPATH//://bin:}/bin
#export PATH=$PATH:/usr/local/MATLAB/R2013a_Student/bin
#export MATLAB_EXECUTABLE=/usr/local/MATLAB/R2013a_Student/bin/matlab
#export LADSPA_PATH=/usr/lib/x86_64-linux-gnu/lmms/ladspa
#export COPASIDIR=/home/louis/opt/copasi
export PATH=$PATH:/usr/local/texlive/2019/bin/x86_64-linux
#export PATH=$PATH:/home/louis/opt/homer/bin/
#export PATH=$PATH:/usr/bin/edirect
#export PATH=$PATH:/usr/bin/formd
#export PATH=$PATH:/usr/local/bin/rssowl
export PATH=$PATH:/home/louis/.scripts/exports
#export PATH=$PATH:/usr/bin/seaview
#export PATH=$PATH:/usr/local/bin/drive-linux-amd64
#export PATH=$PATH:/home/louis/opt/Komodo-Edit-9/bin
#export PATH=$PATH:/home/louis/opt/BytecodeViewer
#export PATH=$PATH:/home/louis/opt/FFcast/usr/bin
#export PATH=$PATH:/home/louis/opt/miller/bin/
#export PS1="${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u\[\033[0;32m\] 🚶\[\033[01;34m\] \w \$\[\033[00m\] "
#export PS2="\[\033[0;32m\] 🚵\[\033[00m\] "
#export PS1="${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\]"
export COMMAND_NOT_FOUND_FORCE_PYTHON2 # weird Anaconda-produced bug
#export PATH=$ROOTSYS/bin:$PATH
#export HDF5_HOME=/usr/local/hdf5/
#export LD_LIBRARY_PATH=$ROOTSYS/lib:$LD_LIBRARY_PATH
#export scholaRdaemon="/home/louis/Dropbox/Y3/Programming/scholaRdaemon/"
#export SCALA_HOME="/home/louis/opt/scala"
#export PATH=$PATH:$SCALA_HOME/bin
export PATH=$PATH:/home/louis/opt/bin
# for joeyism/linkedin_scraper
#export PATH=$PATH:/home/louis/.local/share/binman_chromedriver/linux64/2.32/chromedriver
#export CHROMEDRIVER=~/.local/share/binman_chromedriver/linux64/2.32/chromedriver
if which ruby >/dev/null && which gem >/dev/null; then
PATH="$(ruby -rrubygems -e 'puts Gem.user_dir')/bin:$PATH"
fi
# Add RVM to PATH for scripting
export PATH="$PATH:$HOME/.rvm/bin"
# added by Anaconda3 installer
# export PATH="$HOME/anaconda3/bin:$PATH"
# not added by miniconda installer, but I am (override system Python):
export PATH="$HOME/miniconda/bin:$PATH"
# Systems Biology Workbench
export PATH="$PATH:/home/louis/sbw-2.10.0/bin/"
export HISTTIMEFORMAT="%d/%m/%y %T " # get timestamps in history http://askubuntu.com/a/391087/266014
# Automatically open .tar.gz files
# via http://www.serverwatch.com/tutorials/article.php/3798511/Reading-Compressed-Files-With-less.htm
# see http://www.freebsd.org/cgi/man.cgi?less(1)#INPUT_PREPROCESSOR
# gives an error on non-tar things though what..
# export LESSOPEN="|tar --to-stdout -zxf %s"
# HiDPI for GTK+ apps
export GDK_SCALE=1
#export GDK_SCALE=2
export GDK_DPI_SCALE=1
#export GDK_DPI_SCALE=0.5
# HiDPI for QT
# Don't do this it looks bad on matplotlib
#export QT_DEVICE_PIXEL_RATIO=2
# suppress __pycache__/ creation
export PYTHONDONTWRITEBYTECODE=1
export PYTHONSTARTUP=$HOME/.pythonrc
# virtualenv and virtualenvwrapper
export WORKON_HOME=$HOME/.virtualenvs
export VIRTUALENVWRAPPER_PYTHON=/home/louis/anaconda3/bin/python
export EDITOR=vim
# for Python with pydoc.pager in ~/.pythonrc :: listpager()
export PAGER='less -Sr'
# Tesseract data: `tessdata_best` lives under here as subdirectory `tessdata`
export TESSDATA_PREFIX="$HOME/opt/tessdatas/best/tessdata/"
# GTK bug https://unix.stackexchange.com/a/230442/89254
# shows an error when using gnome-terminal in LXD
export NO_AT_BRIDGE=1