-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbashrc
48 lines (43 loc) · 1000 Bytes
/
bashrc
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
set -o histexpand on
shopt -s cdable_vars
shopt -u cdspell
shopt -u checkhash
shopt -s checkwinsize
shopt -s cmdhist
shopt -u dotglob
shopt -u execfail
shopt -s expand_aliases
shopt -u extdebug
shopt -s extglob
shopt -s extquote
shopt -u failglob
shopt -s force_fignore
shopt -u gnu_errfmt
shopt -s histappend
shopt -s histreedit
shopt -s histverify
shopt -s hostcomplete
shopt -u huponexit
shopt -s interactive_comments
shopt -s lithist
shopt -s login_shell
shopt -s mailwarn
shopt -u no_empty_cmd_completion
shopt -u nocaseglob
shopt -u nocasematch
shopt -u nullglob
shopt -s progcomp
shopt -s promptvars
shopt -u restricted_shell
shopt -u shift_verbose
shopt -s sourcepath
shopt -u xpg_echo
if [ -f /usr/local/etc/bash_completion ]; then
. /usr/local/etc/bash_completion
fi
if [ -f "/usr/local/opt/bash-git-prompt/share/gitprompt.sh" ]; then
GIT_PROMPT_THEME=Solarized_Extravagant
source "/usr/local/opt/bash-git-prompt/share/gitprompt.sh"
fi
alias "ls"="ls -Fp "
alias "ll"="ls -lFp "