-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbashrc
More file actions
33 lines (27 loc) · 695 Bytes
/
bashrc
File metadata and controls
33 lines (27 loc) · 695 Bytes
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
if [ -f /etc/bashrc ]
then
source /etc/bashrc
fi
export EDITOR=vim
export SUDO_EDITOR=rvim
alias ls="ls -F --color=auto"
alias ll="ls -lh"
alias la="ls -lha"
alias grep="grep --color"
alias less="less -R"
export LESS=-j5
PS1='\[\e[0;31m\]\h\[\e[m\] \[\e[0;32m\]\w\[\e[m\] \$ '
PROMPT_COMMAND='history -a'
HISTSIZE=10000000
HISTFILESIZE=100000000
HISTIGNORE='ls:ll:cd:bg:fg:history'
HISTTIMEFORMAT='%F %T '
shopt -s histappend histreedit histverify cmdhist
shopt -s autocd cdable_vars cdspell dirspell
shopt -s checkhash no_empty_cmd_completion
export PYTHONDONTWRITEBYTECODE=True
export MAKEFLAGS="-j --output-sync=recurse"
if [ -f $HOME/.bash_local ]
then
source $HOME/.bash_local
fi