-
Notifications
You must be signed in to change notification settings - Fork 0
/
zshrc
192 lines (163 loc) ยท 6.26 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
188
189
190
191
192
# TODO: split accross files same as vim
# Test for an interactive shell. There is no need to set anything
# past this point for scp and rcp, and it's important to refrain from
# outputting anything in those cases.
if [[ $- != *i* ]] ; then
# Shell is non-interactive. Be done now!
return
fi
##############################################################
# customize prompt #
##############################################################
export TERM=xterm-256color
export CLICOLOR=1
export LSCOLORS=Fafacxdxbxegedabagacad
# PROMPT STUFF
GREEN=$(tput setaf 2);
YELLOW=$(tput setaf 3);
RESET=$(tput sgr0);
function git_branch {
# Shows the current branch if in a git repository
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\ \(\1\)/';
}
function random_element {
declare -a array=("$@")
r=$((RANDOM % ${#array[@]}))
printf "%s\n" "${array[$r]}"
}
# Default Prompt
setEmoji () {
EMOJI="$*"
DISPLAY_DIR='$(dirs)'
DISPLAY_BRANCH='$(git_branch)'
PROMPT="${YELLOW}${DISPLAY_DIR}${GREEN}${DISPLAY_BRANCH}${RESET} ${EMOJI}"$'\n'"$ ";
}
newRandomEmoji () {
setEmoji "$(random_element ๐
๐ฝ ๐ฅ ๐ ๐ป โ ๐พ ๐ ๐ ๐ฐ ๐ ๐ ๐ ๐ค ๐ ๐ผ ๐ช ๐ฆ ๐ฅ ๐ฎ ๐ ๐ฏ โ๏ธ ๐ ๐ณ ๐ฟ ๐ฅณ ๐คฉ ๐คฏ ๐ค ๐จโ๐ป ๐ฆธโ ๐งโ ๐งโ ๐งโ ๐จโ๐ ๐จโ๐ฌ ๐บ ๐ฆ ๐ถ ๐ต ๐ป ๐ฆ ๐ ๐ฆ ๐ฆ ๐ฆ ๐ฆ ๐ฆ ๐ ๐ฆ ๐ ๐ข ๐ ๐ ๐ฆ โจ โ๏ธ โก๏ธ ๐ฅ ๐ซ ๐งฌ ๐ฎ โ๏ธ ๐ ๐ญ โช๏ธ ๐ฑ)"
}
newRandomEmoji
# Disable flow control (Ctrl+s will not suspend input to the terminal, so now
# we can use it to open split panes in vim)
stty -ixon -ixoff
# allow substitution in PS1
setopt promptsubst
# history size
HISTSIZE=5000
HISTFILESIZE=10000
SAVEHIST=5000
setopt EXTENDED_HISTORY
HISTFILE=${ZDOTDIR:-$HOME}/.zsh_history
# share history across multiple zsh sessions
setopt SHARE_HISTORY
# append to history
setopt APPEND_HISTORY
# adds commands as they are typed, not at shell exit
setopt INC_APPEND_HISTORY
# do not store duplications
setopt HIST_IGNORE_DUPS
##############################################################
# Aliases #
##############################################################
# iamfotx's modifications
alias ls="ls -G"
alias ll="ls -alG"
# prompt aliases
alias jestify="PS1=\"๐\"$'\n'\"$ \"";
alias testinglibify="PS1=\"๐\"$'\n'\"$ \"";
alias cypressify="PS1=\"๐\"$'\n'\"$ \"";
alias staticify="PS1=\"๐\"$'\n'\"$ \"";
alias nodeify="PS1=\"๐ฅ\"$'\n'\"$ \"";
alias reactify="PS1=\"โ๏ธ\"$'\n'\"$ \"";
alias harryify="PS1=\"๐งโ\"$'\n'\"$ \"";
# Custom Aliases
alias code="\"/Applications/Visual Studio Code.app/Contents/Resources/app/bin/code\""
function c { code ${@:-.} }
alias ..="cd ../";
alias ....="cd ../../";
alias ..l="cd ../ && ll";
alias cd..="cd ../"
function mvi { mvim "$@" }
alias pg="echo 'Pinging Google' && ping www.google.com";
alias vz="vim ~/.zshrc";
alias cz="code ~/.zshrc";
alias sz="source ~/.zshrc";
alias vv="vi ~/.vimrc";
alias de="cd ~/Desktop";
alias d="cd ~/codes";
alias cl="clear"
alias showFiles='defaults write com.apple.finder AppleShowAllFiles YES; killall Finder /System/Library/CoreServices/Finder.app'
alias hideFiles='defaults write com.apple.finder AppleShowAllFiles NO; killall Finder /System/Library/CoreServices/Finder.app'
alias deleteDSFiles="find . -name '.DS_Store' -type f -delete"
alias npm-update="npx ncu --dep prod --dep dev --upgrade";
alias yarn-update="yarn upgrade-interactive --latest";
alias flushdns="sudo dscacheutil -flushcache;sudo killall -HUP mDNSResponder"
alias dont_index_node_modules='find . -type d -name "node_modules" -exec touch "{}/.metadata_never_index" \;';
## git aliases
function gc { git commit -m "$@"; }
function gcl { git clone "$@"; }
alias gs="git status";
alias gp="git pull";
alias gf="git fetch";
alias gpush="git push";
alias gd="git diff";
alias ga="git add .";
dif() { git diff --color --no-index "$1" "$2" | diff-so-fancy; }
cdiff() { code --diff "$1" "$2"; }
## npm aliases
alias ni="npm install";
alias nrs="npm run start -s --";
alias nrb="npm run build -s --";
alias nrd="npm run dev -s --";
alias nrt="npm run test -s --";
alias nrtw="npm run test:watch -s --";
alias nrv="npm run validate -s --";
alias rmn="rm -rf node_modules";
alias flush-npm="rm -rf node_modules package-lock.json && npm i && say NPM is done";
alias nicache="npm install --prefer-offline";
alias nioff="npm install --offline";
## yarn aliases
alias yar="yarn run";
alias yas="yarn run start";
alias yab="yarn run build";
alias yat="yarn run test";
alias yav="yarn run validate";
alias yoff="yarn add --offline";
alias ypm="echo \"Installing deps without lockfile and ignoring engines\" && yarn install --no-lockfile --ignore-engines"
## use hub for git
alias git=hub
##############################################################
# custom fns #
##############################################################
mg () { mkdir "$@" && cd "$@" || exit; }
cdl() { cd "$@" && ll; }
npm-latest() { npm info "$1" | grep latest; }
killport() { lsof -i tcp:"$*" | awk 'NR!=1 {print $2}' | xargs kill -9 ;}
function quit () {
if [ -z "$1" ]; then
# display usage if no parameters given
echo "Usage: quit appname"
else
for appname in $1; do
osascript -e 'quit app "'$appname'"'
done
fi
}
##############################################################
# paths #
##############################################################
BREWPATH=/opt/homebrew
BREWBIN=/opt/homebrew/bin
PATH="$PATH":"$BREWBIN"
PATH="$PATH":"$HOME/.yarn/bin"
PATH="$PATH":"./node_modules/.bin"
BASE16_SHELL="$HOME/.config/base16-shell/"
NVM_DIR="$HOME/.nvm"
##############################################################
# load on start #
##############################################################
# Load base16 shell helpers
[ -n "$PS1" ] && [ -s "$BASE16_SHELL/profile_helper.sh" ] && eval "$($BASE16_SHELL/profile_helper.sh)"
# Load nvm
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
source /Users/iamfotx/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh