-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbashrc
35 lines (25 loc) · 946 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
# ---------------------------------------------------------------------------
#
# Description: Generic bash configuration
#
# ---------------------------------------------------------------------------
# -------------------------------
# GIT CONFIGURATION
# -------------------------------
source ~/.git-completions
source ~/.git-prompt-info
# -------------------------------
# ENVIRONMENT CONFIGURATION
# -------------------------------
export PS1='\[\033[0;36m\]\u\[\033[00;36m\]@\[\033[00;36m\]\h: \[\033[00;34m\]\[\033[01;33m\]\w \[\033[00;32m\]$(git_prompt) \[\033[00m\]'
# -------------------------------
# ALIASES
# -------------------------------
function ll() { ls -lFh --color=always "$@" | grep -v .DS_Store ;}
alias ls='ls --color=always'
alias tree='tree -C'
alias tmux="tmux -2"
# -------------------------------
# CUSTOM CONFIGURATION
# -------------------------------
source ~/.bashrc-custom