-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bashrc_thinkpad-t430
47 lines (40 loc) · 1.28 KB
/
.bashrc_thinkpad-t430
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
#!/usr/bin/env bash
export POSTAP_PATH=/home/acampove/micromamba/envs/run3/bin
export DECPATH=/home/acampove/Packages/DecFiles
export SFTDIR=/home/acampove/Packages
export CONFPATH=/home/acampove/Packages/config_files
export GANDBS=/home/acampove/gangadir/acampove_dbase
export DOWNLOAD_NTUPPATH=/home/acampove/Data/rx_samples
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
then
PATH="$HOME/.local/bin:$HOME/bin:$PATH"
fi
export PATH
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
# User specific aliases and functions
if [ -d ~/.bashrc.d ]; then
for rc in ~/.bashrc.d/*; do
if [ -f "$rc" ]; then
. "$rc"
fi
done
fi
unset rc
# >>> mamba initialize >>>
# !! Contents within this block are managed by 'micromamba shell init' !!
export MAMBA_EXE='/home/acampove/.local/bin/micromamba';
export MAMBA_ROOT_PREFIX='/home/acampove/micromamba';
__mamba_setup="$("$MAMBA_EXE" shell hook --shell bash --root-prefix "$MAMBA_ROOT_PREFIX" 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__mamba_setup"
else
alias micromamba="$MAMBA_EXE" # Fallback on help from micromamba activate
fi
unset __mamba_setup
# <<< mamba initialize <<<