forked from romanblanco/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bash_profile
40 lines (35 loc) · 855 Bytes
/
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
# do not blank screen after inactivity
xset s off -dpms
# user configuration
PATH=""
PATH=$PATH:/bin
PATH=$PATH:/usr/bin
PATH=$PATH:/usr/local/bin
PATH=$PATH:/sbin
PATH=$PATH:/usr/sbin
PATH=$PATH:/usr/local/sbin
PATH=$PATH:$HOME/bin
PATH=$PATH:$HOME/.rbenv/bin
PATH=$PATH:$HOME/.cargo/bin
export PATH
export TERM=screen-256color
export TERMINAL=alacritty
export PROMPT_COMMAND='history -a'
export PAGER='less'
export EDITOR='vim'
export VISUAL='vim'
export BROWSER='firefox'
export LANG=en_US.UTF-8
export HISTCONTROL=ignoreboth
export HISTCONTROL=ignoredups
export HISTSIZE=-1
export HISTFILESIZE=-1
export PROMPT_COMMAND=__prompt_command
shopt -s histappend
eval "$(hub alias -s)"
eval `ssh-agent -s` &> /dev/null
ssh_files=(~/.ssh/*)
for identification in ${ssh_files[@]} ; do
ssh-add ${identification%.*} &> /dev/null
done
source $HOME/.bashrc