Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- export PATH=$HOME/bin:/usr/local/bin:$PATH
- export ZSH="/Users/sohaibA/.oh-my-zsh"
- ZSH_THEME="powerlevel10k/powerlevel10k"
- plugins=(
- brew
- cp
- git git-flow-completion
- history-substring-search
- osx
- poetry
- zsh-autosuggestions zsh-completions zsh-syntax-highlighting
- )
- autoload -U compinit && compinit
- complete -F __start_kubectl k
- [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
- export PATH="/usr/local/opt/icu4c/bin:$PATH"
- export PATH="/usr/local/opt/icu4c/sbin:$PATH"
- export GOPATH=$HOME/go
- export GOROOT="$(brew --prefix golang)/libexec"
- export PATH="$PATH:${GOPATH}/bin:${GOROOT}/bin"
- pasteinit() {
- OLD_SELF_INSERT=${${(s.:.)widgets[self-insert]}[2,3]}
- zle -N self-insert url-quote-magic # I wonder if you'd need `.url-quote-magic`?
- }
- pastefinish() {
- zle -N self-insert $OLD_SELF_INSERT
- }
- zstyle :bracketed-paste-magic paste-init pasteinit
- zstyle :bracketed-paste-magic paste-finish pastefinish
- export PATH="$HOME/.poetry/bin:$PATH"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement