-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bashrc
33 lines (25 loc) · 1.36 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
30
31
32
33
# This file is sourced by all *interactive* bash shells on startup,
# including some apparently interactive shells such as scp and rcp
# that can't tolerate any output. So make sure this doesn't display
# anything or bad things will happen !
# Test for an interactive shell. There is no need to set anything
# past this point for scp and rcp, and it's important to refrain from
# outputting anything in those cases.
if [[ $- != *i* ]] ; then
# Shell is non-interactive. Be done now!
return
fi
# Put your fun stuff here.
PATH="$HOME/bin/:$HOME/.local/bin/:$HOME/.cabal/bin/:$HOME/.cargo/bin/:${PATH}"
export EDITOR="/usr/bin/vim"
export PIP_DOWNLOAD_CACHE=$HOME/.pip/cache
export GOPATH=$HOME/go
export PATH="$GOPATH/bin:${PATH}"
export PATH="/opt/chefdk/bin:${PATH}"
alias shitssh="ssh -oKexAlgorithms=+diffie-hellman-group1-sha1 -oHostKeyAlgorithms=+ssh-dss,ssh-rsa -oPubkeyAcceptedKeyTypes=+ssh-rsa"
. $HOME/.opam/opam-init/init.sh > /dev/null 2> /dev/null || true
export _JAVA_OPTIONS="-Dawt.useSystemAAFontSettings=on"
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/home/implr/google-cloud-sdk/path.bash.inc' ]; then . '/home/implr/google-cloud-sdk/path.bash.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '/home/implr/google-cloud-sdk/completion.bash.inc' ]; then . '/home/implr/google-cloud-sdk/completion.bash.inc'; fi