-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bashrc
30 lines (26 loc) · 1.11 KB
/
.bashrc
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
# Sample .bashrc for SUSE Linux
# Copyright (c) SUSE Software Solutions Germany GmbH
# There are 3 different types of shells in bash: the login shell, normal shell
# and interactive shell. Login shells read ~/.profile and interactive shells
# read ~/.bashrc; in our setup, /etc/profile sources ~/.bashrc - thus all
# settings made here will also take effect in a login shell.
#
# NOTE: It is recommended to make language settings in ~/.profile rather than
# here, since multilingual X sessions would not work properly if LANG is over-
# ridden in every subshell.
test -s ~/.alias && . ~/.alias || true
alias dotfiles='/usr/bin/git --git-dir=$HOME/x-dot --work-tree=$HOME'
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/home/quix/x-conda/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/home/quix/x-conda/etc/profile.d/conda.sh" ]; then
. "/home/quix/x-conda/etc/profile.d/conda.sh"
else
export PATH="/home/quix/x-conda/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<