-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot_profile.tmpl
73 lines (68 loc) · 2.69 KB
/
dot_profile.tmpl
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
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022
# BASIC
export TERMINAL={{ .terminal }}
export EDITOR=/usr/bin/nvim
export BROWSER=/usr/bin/firefox
export FILE_MANAGER={{ .file_manager }}
export XDG_CONFIG_HOME="$HOME/.config"
# PATH
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
export PATH="$HOME/.cargo/bin:$PATH"
# Python
# Marrying system wide python with vim-virtualenv
export PYTHONPATH=$PYTHONPATH:~/.local/bin
# Python projects
export PYSWI_HOME=~/.pyswi
export PYQSM_HOME=$PYSWI_HOME
# Custom
export BATCH_LOG_DIR={{ .path_batchlog }}
export BIOMED1={{ .path_biomed1 }}
export DACH_DIR="/data/projects/swi-ms-coop-graz-dfg"
export SUBJS_DIR=$DACH_DIR/data/subjs_all
export PATH="$DACH_DIR/scripts/pygraz2/bin:$PATH"
export PATH="$DACH_DIR/scripts/pygraz2/explorative:$PATH"
export PATH="$DACH_DIR/scripts/pygraz2/pygraz2/qa:$PATH"
export PATH="$DACH_DIR/scripts/pygraz2/pygraz2/sys:$PATH"
export PATH="$DACH_DIR/scripts/pygraz2/pygraz2/dmri:$PATH"
export PATH="$DACH_DIR/scripts/pygraz2/pygraz2/qmri:$PATH"
export PATH="$DACH_DIR/scripts/pygraz2/pygraz2/mask:$PATH"
export PATH="$DACH_DIR/scripts/pygraz2/pygraz2/utils:$PATH"
export PATH="$DACH_DIR/scripts/pygraz2/pygraz2/analysis:$PATH"
export PATH="$DACH_DIR/scripts/pygraz2/pygraz2/sitecomp:$PATH"
export XLA_FLAGS=--xla_gpu_cuda_data_dir={{ .cuda4jax }}
export JULIA_CUDA_USE_BINARYBUILDER=false
{{- if eq .chezmoi.hostname "ideapad" }}
export MMUTE_DATA="/data/projects/ma-maggioni/data"
export PATH="$HOME/soft/mrtrix3/bin:$PATH"
export LEDGER_DATA=$HOME/budget/
export LEDGER_FILE=$LEDGER_DATA/2021/journal.ledger
export REG_ALADIN=
export AIRQIP={{ .airq_ip }}
export AIRQMDNS={{ .airq_mdns }}
export AIRQPASS={{ .airq_pass }}
export AIRQDATA={{ .airq_data }}
export LD_LIBRARY_PATH="/usr/local/cuda-11.0/lib64:$LD_LIBRARY_PATH"
export IMZML_DATA="/mnt/data/projects/spectra/data"
export DOCKER_HOST=unix:///run/user/1000/docker.sock
export PATH="$PATH:/data/projects/airq/xtensa-esp32-elf/bin"
export IDF_PATH="/data/projects/airq/pycom-esp-idf"
{{- end }}
{{- if eq .chezmoi.hostname "p180380" }}
export REG_ALADIN={{ .path_reg_aladin }}
export MedPhysMatlabFramework=/data/projects/dev-matlab-framework/scripts/git/renat/MATLAB_MRI_Framework
umask 002
{{- end }}
# vim:ft=sh