-
Notifications
You must be signed in to change notification settings - Fork 0
/
.bashrc
26 lines (22 loc) · 874 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
. ~/.bash_functions
. ~/.bash_aliases
. ~/.bash_miscs
# +========================================================+
# | Environment variables |
# +========================================================+
#export LANG="C.UTF-8"
# +========================================================+
# | stty |
# +========================================================+
# Disable C-S locks
stty -ixon
# +========================================================+
# | Bash Completion |
# +========================================================+
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi