forked from jessarcher/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zshrc
187 lines (152 loc) · 5.6 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
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
#
# ________
# |\\W#####M\
# |M\\W#####M\
# |#M\\W#####M\
# |##M\\W#####M\
# A###M\\W#####M\
# _______,a#####M|\W#####M\
# \W############W \W#####M\
# \W##########W \W#####M\
# 'YW#####W7' \W#####M\
# ¯¯¯¯¯ ¯¯¯¯¯¯¯¯
#
# Personal .zshrc file of Jess Archer <[email protected]>
#
# Plugins {{{
# ==============================================================================
# Load the Antibody plugin manager for zsh.
source <(antibody init)
# Setup required env var for oh-my-zsh plugins
export ZSH="$(antibody home)/https-COLON--SLASH--SLASH-github.com-SLASH-robbyrussell-SLASH-oh-my-zsh"
antibody bundle robbyrussell/oh-my-zsh
antibody bundle robbyrussell/oh-my-zsh path:plugins/adb
antibody bundle robbyrussell/oh-my-zsh path:plugins/bower
antibody bundle robbyrussell/oh-my-zsh path:plugins/composer
antibody bundle robbyrussell/oh-my-zsh path:plugins/cp
antibody bundle robbyrussell/oh-my-zsh path:plugins/dnf
antibody bundle robbyrussell/oh-my-zsh path:plugins/docker
antibody bundle robbyrussell/oh-my-zsh path:plugins/docker-compose
antibody bundle robbyrussell/oh-my-zsh path:plugins/git
antibody bundle robbyrussell/oh-my-zsh path:plugins/git-flow
antibody bundle robbyrussell/oh-my-zsh path:plugins/gpg-agent
antibody bundle robbyrussell/oh-my-zsh path:plugins/gulp
antibody bundle robbyrussell/oh-my-zsh path:plugins/httpie
antibody bundle robbyrussell/oh-my-zsh path:plugins/jsontools
antibody bundle robbyrussell/oh-my-zsh path:plugins/jump
antibody bundle robbyrussell/oh-my-zsh path:plugins/nmap
antibody bundle robbyrussell/oh-my-zsh path:plugins/npm
antibody bundle robbyrussell/oh-my-zsh path:plugins/pass
antibody bundle robbyrussell/oh-my-zsh path:plugins/rsync
antibody bundle robbyrussell/oh-my-zsh path:plugins/ssh-agent
antibody bundle robbyrussell/oh-my-zsh path:plugins/tmux
antibody bundle robbyrussell/oh-my-zsh path:plugins/tmuxinator
antibody bundle robbyrussell/oh-my-zsh path:plugins/z
# Other bundles
antibody bundle sampson-chen/sack
#antibody bundle jessarcher/zsh-artisan
antibody bundle /home/jess/.oh-my-zsh/custom/plugins/artisan
antibody bundle zsh-users/zsh-autosuggestions
# This needs to be the last bundle.
antibody bundle zsh-users/zsh-syntax-highlighting
# Load the theme.
# antibody bundle robbyrussell/oh-my-zsh path:themes/robbyrussell.zsh-theme
antibody bundle dracula/zsh
# }}}
# Configuration {{{
# ==============================================================================
HYPHEN_INSENSITIVE="true"
ENABLE_CORRECTION="false"
COMPLETION_WAITING_DOTS="true"
HIST_STAMPS="yyyy-mm-dd"
typeset -U path cdpath fpath
# Vim mode
bindkey -v
export KEYTIMEOUT=1
export ANDROID_HOME="$HOME/Android/Sdk/"
export GIT_EDITOR=vim
path=(
$HOME/.local/bin
$HOME/.bin
$HOME/bin
$HOME/.composer/vendor/bin
$HOME/.go/bin
./vendor/bin
${ANDROID_HOME}tools/
${ANDROID_HOME}platform-tools/
$path
)
setopt auto_cd
cdpath=(
$HOME/Code
)
zstyle ':completion:*' group-name ''
zstyle ':completion:*:descriptions' format %d
zstyle ':completion:*:descriptions' format %B%d%b
zstyle ':completion:*:complete:(cd|pushd):*' tag-order \
'local-directories named-directories'
export EDITOR='vim'
export NVIM_LISTEN_ADDRESS='/tmp/nvimsocket'
export ARTISAN_OPEN_ON_MAKE_EDITOR='nvr'
export FZF_DEFAULT_COMMAND='ag -u -g ""'
unsetopt sharehistory
# }}}
# Aliases & Functions {{{
# ==============================================================================
# Laravel
alias a="artisan"
alias tinker="artisan tinker"
alias serve="artisan serve"
alias mfs="artisan migrate:fresh --seed"
homestead() {
( cd ~/Homestead && vagrant $* )
}
# Git
alias g="git"
alias gs="git s"
alias nah="git reset --hard;git clean -df"
alias co="git checkout"
# Docker
alias d="docker"
alias dc="docker-compose"
alias dce="docker-compose exec"
alias dcea="docker-compose exec app"
dceas () {
docker-compose exec app su app -c "$*"
}
alias dceasa="dceas php artisan"
# General
alias vim="nvim"
alias mux="tmuxinator"
alias copy="xclip -selection clipboard"
alias paste="xclip -o -selection clipboard"
alias ag="sag"
alias cat="bat"
alias webcam="gphoto2 --stdout --capture-movie | ffmpeg -i - -vcodec rawvideo -pix_fmt yuv420p -threads 0 -f v4l2 /dev/video1"
# Open vim with z argument
v() {
if [ -n "$1" ]; then
z $1
fi
nvim
}
# cd() {
# cd $1 && eval ls
# }
# alias cd="cdls"
open () {
xdg-open $* > /dev/null 2>&1
}
if (( $+commands[tag] )); then
tag() { command tag "$@"; source ${TAG_ALIAS_FILE:-/tmp/tag_aliases} 2>/dev/null }
alias ag=tag
fi
# }}}
# Interactive shell startup scripts {{{
# ==============================================================================
if [[ $- == *i* && $0 == '/bin/zsh' ]]; then
~/.dotfiles/scripts/login.sh
fi
# }}}
# vim: set nospell foldmethod=marker foldlevel=0:
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh