-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.bash_profile
119 lines (99 loc) · 2.56 KB
/
.bash_profile
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# Setting PATH for Python 3.7
# The original version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.7/bin:${PATH}"
export PATH
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/Users/manosriram/miniconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/Users/manosriram/miniconda3/etc/profile.d/conda.sh" ]; then
. "/Users/manosriram/miniconda3/etc/profile.d/conda.sh"
else
export PATH="/Users/manosriram/miniconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
# Setting PATH for Python 3.7
# The original version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.7/bin:${PATH}"
export PATH
HOST_NAME=_ManoSr
shopt -s autocd
shopt -s histappend
export PATH=$PATH:$HOME/bin
export HOMEBREW_NO_AUTO_UPDATE=1
export HISTSIZE=5000
export HISTFILESIZE=10000
bind '"\e[A": history-search-backward'
bind '"\e[B": history-search-forward'
export FZF_DEFAULT_COMMAND='ag --hidden --ignore .git -g ""'
export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
export TERM=xterm-256color
txtred='\e[0;31m' # Red
txtgrn='\e[0;32m' # Green
bldgrn='\e[1;32m' # Bold Green
bldpur='\e[1;35m' # Bold Purple
txtrst='\e[0m' # Text Reset
print_before_the_prompt () {
dir=$PWD
home=$HOME
dir=${dir/"$HOME"/"~"}
printf "\n$txtgrn%s $txtrst\n" "$dir"
}
PROMPT_COMMAND=print_before_the_prompt
PROMPT_COMMAND="history -a; history -c; history -r; $PROMPT_COMMAND"
PS1="→ "
function crun() {
gcc $1 && ./a.out
}
function mkcd() {
mkdir $1 && cd $1
}
function tvim() {
touch $1 && vim $1
}
function cprun() {
g++ -std=c++14 $1 && ./a.out && cat out.txt
}
function cpprun() {
g++ -std=c++17 $1 && ./a.out
}
function gacp() {
git add .;
git commit -m $1;
git push origin $2;
}
function CD_Desktop() {
cd ~/desktop/$1
}
function list() {
ls -l
}
function listAll() {
ls -a -l
}
function goBack() {
cd ../
}
# Aliases
alias a='code .'
alias c='code .'
alias reveal-md="reveal-md --theme night --highlight-theme hybrid --port 1337"
alias ns='npm start'
alias start='npm start'
alias nr='npm run'
alias run='npm run'
alias nis='npm i -S'
alias l="ls" # List files in current directory
alias ll="ls -al" # List all files in current directory in long list format
alias o="open ." # Open the current directory in Finder
alias tvim=tvim
alias cprun=cprun
alias desk=CD_Desktop
alias lst=list
alias lsta=listAll
alias back=goBack