-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.zshrc
More file actions
41 lines (30 loc) · 1.48 KB
/
.zshrc
File metadata and controls
41 lines (30 loc) · 1.48 KB
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
if command -v fish &> /dev/null; then
fish
fi
[ -f ".local.zsh" ] && source .local.zsh
PROMPT='%(?.%F{green}√.%F{red}?%?)%f %B%F{240}%1~%f%b %# '
export PATH="${HOMEBREW_PREFIX}/opt/openssl/bin:$PATH"
export PATH="$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
alias dg="git --git-dir=$HOME/.dev-env.git/ --work-tree=$HOME $argv"
alias reload-zsh="source ~/.zshrc"
alias edit-zsh="vi ~/.zshrc"
alias divider="echo --------------------------------------------------------------------------------"
alias notify-done="osascript -e 'display notification \"Task Completed\" with title \"Done\"'; end"
alias grep="command grep --color=auto $argv"
alias ls='ls --color=auto'
alias ll='ls -la'
alias l.='ls -d .* --color=auto'
alias edit-vscode-settings='vi $HOME/Library/Application\ Support/Code/User/settings.json'
#export SPRING_MAIN_BANNER-MODE=off
export SPRING_OUTPUT_ANSI_ENABLED=ALWAYS
[ -f "$HOME/.zsh/aws.zsh" ] && source $HOME/.zsh/aws.zsh
[ -f "$HOME/.zsh/docker.zsh" ] && source $HOME/.zsh/docker.zsh
[ -f "$HOME/.zsh/gh.zsh" ] && source $HOME/.zsh/gh.zsh
[ -f "$HOME/.zsh/git.zsh" ] && source $HOME/.zsh/git.zsh
[ -f "$HOME/.zsh/gradle.zsh" ] && source $HOME/.zsh/gradle.zsh
[ -f "$HOME/.zsh/keytool.zsh" ] && source $HOME/.zsh/keytool.zsh
[ -f "$HOME/.zsh/kubectl.zsh" ] && source $HOME/.zsh/kubectl.zsh
[ -f "$HOME/.zsh/npm.zsh" ] && source $HOME/.zsh/npm.zsh
[ -f "$HOME/.zsh/openssl.zsh" ] && source $HOME/.zsh/openssl.zsh
# Completions
autoload -U compinit; compinit