Skip to content
Snippets Groups Projects
Verified Commit e6e2e2c7 authored by iliya.saroukha's avatar iliya.saroukha :first_quarter_moon:
Browse files

feat: added fzf-tab plugin and GOPATH

parent eb8d2b40
No related branches found
No related tags found
No related merge requests found
......@@ -77,7 +77,9 @@ ZSH_THEME="powerlevel10k/powerlevel10k"
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(git zsh-autosuggestions zsh-syntax-highlighting)
plugins=(git zsh-autosuggestions zsh-syntax-highlighting fzf-tab)
fpath+=${ZSH_CUSTOM:-${ZSH:-~/.oh-my-zsh}/custom}/plugins/zsh-completions/src
source $ZSH/oh-my-zsh.sh
......@@ -155,3 +157,13 @@ export FZF_DEFAULT_OPTS="
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# ----------- GO -----------
export PATH="$PATH:$(go env GOBIN):$(go env GOPATH)/bin"
# bun completions
[ -s "/home/iliya/.bun/_bun" ] && source "/home/iliya/.bun/_bun"
# bun
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment