-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
60 lines (46 loc) · 1.16 KB
/
.zshrc
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
source ~/antigen/antigen.zsh
export ZSH=/Users/ronan/.oh-my-zsh
export EDITOR=nvim
ZSH_THEME="gallois"
#ZSH_THEME="wild-cherry"
antigen use oh-my-zsh
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle heroku
antigen bundle node
antigen bundle nodenv.plugin.zsh
antigen theme shellder
antigen apply
BULLETTRAIN_PROMPT_ORDER=(
git
nvm
#context
dir
)
BULLETTRAIN_PROMPT_CHAR='_'
PROMPT="$emoji[penguin] > "
plugins=(git brew npm node python, zsh-nvm)
source $ZSH/oh-my-zsh.sh
# ssh
# export SSH_KEY_PATH="~/.ssh/rsa_id"
# setting neovim to the normal vim editor in my keybindings
alias vim='nvim'
alias vimcol='vim ~/Col/talk.md'
#MYSQL
alias sqlstart="mysql.server start"
alias sqlstop="mysql.server stop"
# NGINX
alias nginxstart="sudo nginx"
alias nginxstop="sudo nginx -s stop"
#DEVOPS
alias g='git'
alias gc='git commit'
alias gs='git status'
alias gd='git diff'
alias gds='git diff --stat'
#DIRECTORIES
alias gitproj='cd ~/workspace/projects/git'
alias proj='cd ~/workspace/projects'
alias comm='cd ~/workspace/commercial'
prompt_context () { }
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm