-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbash_profile
63 lines (49 loc) · 1.46 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
export EDITOR=vim
export HISTCONTROL=ignoreboth
export HISTSIZE=100000
export HISTFILESIZE=100000
unset SSH_ASKPASS
export CLICOLOR=1
export GOPATH="$HOME/Developer/go"
export N_PREFIX="$HOME/.local/n"
if [ -f /opt/homebrew/bin/brew ]; then
eval "$(/opt/homebrew/bin/brew shellenv)"
fi
if [ -f /opt/homebrew/bin/luarocks ]; then
eval "$(luarocks path)"
fi
PATH=/usr/local/bin:/usr/local/sbin:/usr/sbin:/sbin:$PATH
PATH=$HOME/Developer/bin:$PATH
PATH=$HOME/.dotfiles/bin:$PATH
PATH=$GOPATH/bin:$PATH
PATH=/Library/TeX/Distributions/.DefaultTeX/Contents/Programs/x86_64:$PATH
PATH=$HOME/.local/bin:$PATH
PATH=$HOME/.cargo/bin:$PATH
PATH=$HOME/.poetry/bin:$PATH
PATH=/opt/squashfuse/bin:$PATH
PATH=$HOMEBREW_PREFIX/opt/coreutils/libexec/gnubin:$PATH
PATH=$HOMEBREW_PREFIX/opt/gawk/libexec/gnubin:$PATH
PATH=$HOMEBREW_PREFIX/opt/grep/libexec/gnubin:$PATH
PATH=$N_PREFIX/bin:$PATH
export PATH
MANPATH=/usr/local/share/man:$MANPATH
MANPATH=/opt/squashfuse/share/man:$MANPATH
MANPATH=$HOMEBREW_PREFIX/opt/coreutils/libexec/gnuman:$MANPATH
export MANPATH
export PIP_REQUIRE_VIRTUALENV=1
export HOMEBREW_NO_INSTALL_CLEANUP=1
if [ "$(uname)" = "Linux" ] && hash setxkbmap 2>/dev/null; then
# Remap caps lock to ctrl
setxkbmap -option ctrl:nocaps
fi
if hash pyenv 2>/dev/null; then
eval "$(pyenv init -)"
fi
if [ -f ~/.bash_profile.local ]; then
# shellcheck source=/dev/null
. ~/.bash_profile.local
fi
if [ -f ~/.bashrc ]; then
# shellcheck source=/dev/null
. ~/.bashrc
fi