-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.bashrc
193 lines (150 loc) · 4.62 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# Set the correct locale
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8
# Add the ~/bin/ dir to $PATH
export PATH=$PATH:$HOME/bin
# Make the prompt blue, bold and display the current path
__color_bold_blue='\[$(tput bold)\]\[$(tput setaf 4)\]'
__color_white='\[$(tput sgr0)\]'
export PS1="$__color_bold_blue\w \\$ $__color_white"
# Use a big command history
export HISTSIZE=1000
export HISTFILESIZE=2000
# Set the default editor to vim
export EDITOR=vim
export VISUAL=vim
# Don't put duplicate lines or lines starting with space in the history
export HISTCONTROL=ignoredups
# Enable globstar behavior, makes **/* match subdirs
shopt -s globstar
# Append to the history file, don't overwrite it
shopt -s histappend
# Check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# Disable the bell
set bell-style none
# Global aliases
alias l='/opt/exa -lF'
alias c='cd'
alias c.='cd ..'
alias v='vim .'
alias vi='vim'
alias vip='vim -p'
alias vs='vi -S Session.vim'
alias j='jobs'
alias f='fg'
alias t='tmux'
alias tmc='tmux loadb -'
alias tmp='tmux saveb -'
alias s='screen'
alias rm='rm -i'
alias gg='git grep -i'
alias ggs='git grep'
alias nodebin='echo -e "Setting up nodebin with path:\n$(npm bin)"; export PATH=$(npm bin):$PATH'
alias clrswp='find . -name "*.swp" -delete'
alias d='docker'
alias dc='docker-compose'
alias prjson='python -m json.tool'
alias igrep='grep -i'
alias si='sudo -i'
alias tree='tree -F'
alias ptp='ptipython --vi'
alias ip='ipython --pprint'
alias psh='pipenv shell'
# Handy Django aliases
alias ds='./manage.py shell'
alias msh='./manage.py shell'
alias mrs='./manage.py runserver'
# Django test command where you can give the path to the test file. It will
# convert it to the dotted format.
mtf() {
./manage.py test $(echo "$*" | sed 's/\//./g' | sed 's/\.py//g' | sed 's/.$//')
}
# Linux specific settings
if [[ $OSTYPE == linux* ]]; then
export TERM=xterm-256color
# This sets the LS_COLORS env var, this will make commands like `tree`
# display colors.
eval $(dircolors)
alias ls='ls --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
alias igrep='grep -i --color=auto'
# Simulate OSX's pbcopy and pbpaste on linux using xsel
alias pbcopy='xsel --clipboard --input'
alias pbpaste='xsel --clipboard --output'
fi
# OS X specific settings
if [[ $OSTYPE == darwin* ]]; then
export CLICOLOR=1
fi
actenv() {
cur_wording_dir=$(pwd)
activate_path=env/bin/activate
while [ ! -f "$activate_path" ]; do
if [ "$(pwd)" == '/' ]; then
echo No virtualenv found
cd "$cur_wording_dir"
return
fi
cd ..
done
source "$activate_path"
cd "$cur_wording_dir"
}
addpath() {
export PATH=$PATH:$*
}
# Default modifiers for less.
#
# -R display color controll characters
# -i case insensitive search
# -F disable paging if the result fits on the screen
# -X disable termcap init/deinit, keeps the less output on the screen
# after exit.
# -S crop lines longer than the screen instead of wrapping them
export LESS=-RiFXS
# Add RVM to PATH
if [ -d $HOME/.rvm/bin ]; then
export PATH="$PATH:$HOME/.rvm/bin"
fi
# Init bash completion
if [ -f /usr/local/etc/bash_completion ]; then
. /usr/local/etc/bash_completion
elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
# A nice shell prompt for inside git repostories
# Shows a short status of the repository in the prompt
# Adds an alias `g=git` and makes autocomplete work
gitprompt() {
export GIT_PS1_SHOWDIRTYSTATE=true;
export GIT_PS1_SHOWSTASHSTATE=true;
export GIT_PS1_SHOWUNTRACKEDFILES=true;
export GIT_PS1_SHOWUPSTREAM="auto";
export GIT_PS1_SHOWCOLORHINTS=true;
. /usr/lib/git-core/git-sh-prompt;
local ps1_start="$__color_bold_blue\w"
local ps1_end="$__color_bold_blue \\$ $__color_white"
local git_string=" (%s$__color_bold_blue)"
export PROMPT_COMMAND="__git_ps1 \"$ps1_start\" \"$ps1_end\" \"$git_string\""
# Short alias for git stuff
alias g=git
# Make autocomplete also work fo the `g` alias
# Old way:
# eval $(complete -p git | sed 's/git$/g/g')
# Old way doesn't seem to work anymore, new way:
__git_complete g __git_main
# More info:
# https://stackoverflow.com/questions/342969/how-do-i-get-bash-completion-to-work-with-aliases
}
# Load possible bash plugins from the ~/.bash_plugins/ dir
if [ -d $HOME/.bash_plugins ]; then
for f in $HOME/.bash_plugins/*
do
source $f
done
fi
[ -f ~/.fzf.bash ] && source ~/.fzf.bash