update from laptop

This commit is contained in:
Daniel Bauer
2018-09-04 14:39:42 +02:00
parent 73be223cd9
commit a4643f9565
37 changed files with 825 additions and 67 deletions

40
.zshrc
View File

@@ -1,40 +0,0 @@
# Source zim
if [[ -s ${ZDOTDIR:-${HOME}}/.zim/init.zsh ]]; then
source ${ZDOTDIR:-${HOME}}/.zim/init.zsh
fi
export PATH=$PATH:/
# source my utility functions
source .zshrc_functions
# alter path
export PATH="$HOME/bin:${PATH}" # binaries
export PATH="$HOME/scripts:${PATH}" # scripts
export PATH="$HOME/.local/bin:${PATH}" # python executeables
# fasd autocompletion
eval "$(fasd --init auto)"
# marker
[[ -s "$HOME/.local/share/marker/marker.sh" ]] && source "$HOME/.local/share/marker/marker.sh"
# the fuck?
eval $(thefuck --alias)
# gromacs
if [ -z "$GMXRC" ]; then
GMXRC="/opt/gromacs-cuda/bin/GMXRC"
fi
source $GMXRC
# python
PYTHONPATH="$PYTHONPATH:/opt/modeller/modlib:/opt/modeller/lib/x86_64-intel8/python3.3"
export PYTHONPATH
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/opt/modeller/lib/x86_64-intel8"
export CUDA_HOME=/opt/cuda;
export TERMINAL="terminator"
export BROWSER="firefox"
export EDITOR="vim"