-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bashrc
50 lines (39 loc) · 888 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
48
49
case $- in
*i*) ;;
*) return;;
esac
export OSH='/home/brunociccarino/.oh-my-bash'
export FASTVIM_HOME="$HOME/.config/fastvim"
export DISABLE_OMF_STATS=true
export LANG=en_US.UTF-8
OSH_THEME="nekolight"
DISABLE_AUTO_UPDATE="true"
COMPLETION_WAITING_DOTS="true"
plugins=(
git
bashmarks
brew
)
aliases=(
general
)
source "$OSH"/oh-my-bash.sh
if [[ -n $SSH_CONNECTION ]]; then
export EDITOR='vim'
else
export EDITOR='nvim'
fi
alias bashconfig="mate ~/.bashrc"
alias ohmybash="mate ~/.oh-my-bash"
alias gitc="git commit -m $1"
alias gc="git commit -m $1"
alias gita="git add"
alias ga="git add"
alias gits="git status"
alias gs="git status"
alias gitch="git checkout"
alias gitchb="git checkout -b"
export PATH="/home/linuxbrew/.linuxbrew/bin:$PATH"
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
fi