-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbashrc
49 lines (35 loc) · 1018 Bytes
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
bgcolor
HISTFILE=~/.sh_history
HISTSIZE=100000
SAVEHIST=100000
# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
if [ -f ~/.aliases ]; then
. ~/.aliases
fi
_JAVA_AWT_WM_NONREPARENTING=1
export _JAVA_AWT_WM_NONREPARENTING
export PS1="[\[\033[1;32m\]\$? \[\033[1;34m\]\u@\h\[\033[1;31m\] \w\[\033[0m\]]
\\$ "
if [[ $TERM="xterm-kitty" ]] ; then
source <(kitty + complete setup bash)
fi
fortune
[ -f /opt/miniconda3/etc/profile.d/conda.sh ] && source /opt/miniconda3/etc/profile.d/conda.sh
# >>> juliaup initialize >>>
# !! Contents within this block are managed by juliaup !!
case ":$PATH:" in
*:/home/pnrao/.juliaup/bin:*)
;;
*)
export PATH=/home/pnrao/.juliaup/bin${PATH:+:${PATH}}
;;
esac
# <<< juliaup initialize <<<