forked from eyesmd/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.shellrc
50 lines (43 loc) · 1.24 KB
/
.shellrc
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
# Common config for all shells
export EDITOR='vim'
export BROWSER='google-chrome-stable'
# Path
export PATH=$PATH:$HOME/.bin # Personal commands
export PATH=$PATH:$HOME/.local/bin # Pip packages path
export PATH=$PATH:/usr/local/go/bin/ # Go
export PATH=$PATH:$HOME/.cargo/bin
export PATH=$PATH:/opt/jdk8u265-b01/bin
export PATH=$PATH:/opt/GoLand/bin
# Add .NET Core SDK tools
export PATH="$PATH:/home/nicolas/.dotnet/tools"
# Reset Style
# TODO: get rid of this variables, not a good idea
Reset_Style='\033[0m'
# Styling
Bold='\033[1m'
# Regular Colors
Black='\033[30m'
Red='\033[31m'
Green='\033[32m'
Yellow='\033[33m'
Blue='\033[34m'
Purple='\033[35m'
Cyan='\033[36m'
White='\033[37m'
# Make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
# Colored GCC warnings and errors
export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
# Virtualenvwrapper
export WORKON_HOME=~/env
if [ -f /usr/local/bin/virtualenvwrapper.sh ]; then
. /usr/local/bin/virtualenvwrapper.sh
fi
# Go path
export GOPATH=$HOME/go
export GOBIN=$HOME/go/bin
export PATH=$PATH:$GOBIN
# Java home
export JAVA_HOME=/usr/lib/jvm/default
# kubuectl
export USE_GKE_GCLOUD_AUTH_PLUGIN=True