-
Notifications
You must be signed in to change notification settings - Fork 3
/
bashrc
103 lines (80 loc) · 3.38 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
if [[ -n "$PS1" ]] ; then
# ignore ls, bg, fg, exit commands
export HISTIGNORE="ls:[bf]g:exit"
# don't put duplicate lines in the history. See bash(1) for more options
# don't overwrite GNU Midnight Commander's setting of `ignorespace'.
HISTCONTROL=$HISTCONTROL${HISTCONTROL+,}ignoredups
# ... or force ignoredups and ignorespace
HISTCONTROL=ignoreboth
# append to the history file, don't overwrite it
shopt -s histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
# Customize PS1 with Git routines
GIT_PS1_SHOWDIRTYSTATE=true # Add Git dirty state mark to PS1
GIT_PS1_SHOWSTASHSTATE=true # Show if something is stashed
GIT_PS1_SHOWUNTRACKEDFILES=true # Show if there're untracked files
# set it to 'yes' if you want colored prompt
color_prompt=yes
if [ "$color_prompt" = yes ]; then
# Colors ('[01;' for bold and '[00;' for non-bold)
# Gray \[\033[01;30m\]
# Red \[\033[01;31m\]
# Green \[\033[01;32m\]
# Yellow \[\033[01;33m\]
# Blue \[\033[01;34m\]
# Magenta \[\033[01;35m\]
# Cyan \[\033[01;36m\]
# White \[\033[01;37m\]
# Normal \[\033[00m\]
PS1='\[\033[01;37m\]$(date +%R)\[\033[00m\] \W$(__git_ps1 " (\[\033[00;31m\]%s\[\033[00m\])") \[\033[01;37m\]>\[\033[00m\] '
else
PS1='$(date +%R) \W$(__git_ps1) > '
fi
unset color_prompt
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
fi
# some more ls aliases
#alias ll='ls -l'
#alias la='ls -A'
#alias l='ls -CF'
# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
. /etc/bash_completion
fi
fi # end of 'if [[ -n "$PS1" ]] ; then'
# This is a good place to source rvm v v v (loads RVM into a shell session).
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"
# Set the EDITOR variable
export EDITOR='vim'
# Set TERM for 256color support (install ncurses-term is a plus)
export TERM='gnome-256color'
# Are dotfiles clean?
dotfiles
# Turn on the Bash vi mode. Mouahahaha!
set -o vi