-
Notifications
You must be signed in to change notification settings - Fork 2
/
.bash_profile
66 lines (54 loc) · 1.67 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
64
65
66
#######################################################
# prompt
#######################################################
export PS1="\[\e[31m\]\u\[\e[m\]\[\e[33m\]@\[\e[m\]\[\e[34m\]\h\[\e[m\] \[\e[32m\]\w\[\e[m\] \e[35m\]$\[\e[m\] "
#######################################################
# shopt
#######################################################
shopt -s cdspell
shopt -s checkwinsize
shopt -s cmdhist
shopt -s dotglob
shopt -s extglob
shopt -s histappend
shopt -s hostcomplete
shopt -s interactive_comments
shopt -s no_empty_cmd_completion
shopt -s nocaseglob
shopt -s nocasematch
#######################################################
# environment
#######################################################
export EDITOR=vim
export GLOBIGNORE=1
export GREP_COLOR='1;31'
export HISTCONTROL=ignoredups
export HISTFILESIZE=100000
export HISTSIZE=100000
export PAGER=less
export TERM=xterm-256color
export VISUAL=vim
#######################################################
# misc
#######################################################
bind 'set completion-ignore-case on'
if [ -t 0 ]; then
stty -ixon -ixoff
fi
#######################################################
# aliases
#######################################################
alias ls='ls --color=auto'
alias ll='ls -la'
alias l='ll'
alias grep='grep --color=auto -i'
alias rm='rm -vR'
alias ..='cd ..'
alias ...='cd ../..'
alias ....='cd ../../..'
alias .....='cd ../../../..'
alias ......='cd ../../../../..'
#######################################################
# source .bash_profile.local
#######################################################
if [ -f "$HOME/.bash_profile.local" ]; then source "$HOME/.bash_profile.local"; fi