-
Notifications
You must be signed in to change notification settings - Fork 55
/
.bashrc
47 lines (36 loc) · 869 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
# .bashrc
export EDITOR="vim"
set -o vi
for i in ~/completion/*; do
. $i
done
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# custom functions
if [ -f /home/$USER/.bash/functions ]; then
. /home/$USER/.bash/functions
fi
# custom functions
if [ -f /home/$USER/.bash/aliases ]; then
. /home/$USER/.bash/aliases
fi
export PATH=$PATH":/home/$USER/bin/:/home/$USER/.local/bin"
powerline-daemon -q
POWERLINE_BASH_CONTINUATION=1
POWERLINE_BASH_SELECT=1
POWERLINE_NO_SHELL_ABOVE=1
. ~/repos/powerline/powerline/bindings/bash/powerline.sh
cd `cat ~/.prev_dir`
cat /dev/null > ~/.prev_dir
eval "$(dircolors ~/.bash/.DIR_COLORS)"
TERM=xterm-256color
# {{{
# Node Completion - Auto-generated, do not touch.
shopt -s progcomp
for f in $(command ls ~/.node-completion); do
f="$HOME/.node-completion/$f"
test -f "$f" && . "$f"
done
# }}}