-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.exports
36 lines (31 loc) · 992 Bytes
/
.exports
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
# ___ ___ __ ___
# |" \ /" ||/"| / ") Maros Kukan
# \ \ // |(: |/ / https://buldogchef.com
# /\\ \/. || __/ https://github.com/maroskukan
# |: \. |(// _ \
# |. \ /: ||: | \ \
# |___|\__/|___|(__| \__)
#
# My favorite exports which are can be sourced from shell rc file
#
# if [ -f "$HOME/.exports" ]; then
# source $HOME/.exports
# fi
# Path Customization for apps
if [ -d "$HOME/go/bin" ] ; then
export GOROOT="$HOME/go"
export GOPATH="$GOROOT/bin"
export PATH="$GOPATH:$PATH"
#export PATH="$HOME/go/bin:$PATH"
fi
if [ -d "$HOME/adb-fastboot/platform-tools" ] ; then
export PATH="$HOME/adb-fastboot/platform-tools:$PATH"
fi
# Generic Files and Apps
export EDITOR=$(which vim)
# This prevents less from clearing up the screen
# E.g. for manpages
export LESS='-XFR'
# This fixes unicode char rendering in less and bat
# https://github.com/sharkdp/bat/issues/2578
export LESSUTFCHARDEF=E000-F8FF:p,F0000-FFFFD:p,100000-10FFFD:p