Skip to content

Instantly share code, notes, and snippets.

@aileron
Created August 3, 2021 01:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aileron/ed8030cf635df39bcb93c8978e4f7597 to your computer and use it in GitHub Desktop.
Save aileron/ed8030cf635df39bcb93c8978e4f7597 to your computer and use it in GitHub Desktop.
.zshrc simple
#export JAVA_HOME=$(/usr/libexec/java_home -v 1.8)
export LANG=en_US.UTF-8
export LC_CTYPE=en_US.UTF-8
export PATH=$PATH:$PWD/bin
export PATH=$PATH:$PWD/go/bin/
export PATH="/usr/local/sbin:$PATH"
export PATH="/Users/aileron/go/bin:$PATH"
export PATH="/opt/homebrew/opt/openssl@1.1/bin:$PATH"
export MECAB_PATH=/usr/local/Cellar/mecab/0.996/lib/libmecab.dylib
export EDITOR=vim
export LDFLAGS="-L/opt/homebrew/opt/openssl@1.1/lib"
export CPPFLAGS="-I/opt/homebrew/opt/openssl@1.1/include"
export PKG_CONFIG_PATH="/opt/homebrew/opt/openssl@1.1/lib/pkgconfig"
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
source ~/.zshrc.history
source ~/.zshrc.prompt
bindkey -e
alias chrome='/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome'
eval "$(rbenv init -)"
eval "$(direnv hook zsh)"
autoload bashcompinit
bashcompinit
autoload -U compinit
compinit -u
compinit
zstyle ':completion:*' list-colors 'di=34' 'ln=35' 'so=32' 'ex=31' 'bd=46;34' 'cd=43;34'
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}'
zstyle ':completion:*:default' menu select=1
setopt no_beep
# tabtab source for electron-forge package
# uninstall by removing these lines or running `tabtab uninstall electron-forge`
[[ -f /usr/local/lib/node_modules/electron-forge/node_modules/tabtab/.completions/electron-forge.zsh ]] && . /usr/local/lib/node_modules/electron-forge/node_modules/tabtab/.completions/electron-forge.zsh
test -e "${HOME}/.iterm2_shell_integration.zsh" && source "${HOME}/.iterm2_shell_integration.zsh"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment