fix(zshrc): update .zshrc copy
This commit is contained in:
@@ -1,7 +1,5 @@
|
|||||||
# Fig pre block. Keep at the top of this file.
|
|
||||||
[[ -f "$HOME/.fig/shell/zshrc.pre.zsh" ]] && builtin source "$HOME/.fig/shell/zshrc.pre.zsh"
|
|
||||||
# Theme
|
# Theme
|
||||||
fpath+=("$(brew --prefix)/share/zsh/site-functions")
|
fpath+=("/opt/homebrew/share/zsh/site-functions")
|
||||||
fpath+=$HOME/.zsh/pure
|
fpath+=$HOME/.zsh/pure
|
||||||
|
|
||||||
autoload -U promptinit; promptinit
|
autoload -U promptinit; promptinit
|
||||||
@@ -12,21 +10,26 @@ prompt pure
|
|||||||
|
|
||||||
# If you come from bash you might have to change your $PATH.
|
# If you come from bash you might have to change your $PATH.
|
||||||
export PATH=$HOME/bin:/usr/local/bin:/opt/homebrew/bin:$PATH
|
export PATH=$HOME/bin:/usr/local/bin:/opt/homebrew/bin:$PATH
|
||||||
export PATH=$(go env GOPATH)/bin:$PATH
|
export PATH="$HOME/go/bin:$PATH"
|
||||||
export PATH=/User/oliverhnat/.local/bin/claude:$PATH
|
export PATH=/User/oliverhnat/.local/bin/claude:$PATH
|
||||||
export EDITOR="/opt/homebrew/bin/nvim"
|
export EDITOR="/opt/homebrew/bin/nvim"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Path to your oh-my-zsh installation.
|
# Path to your oh-my-zsh installation.
|
||||||
export ZSH="$HOME/.oh-my-zsh"
|
export ZSH="$HOME/.oh-my-zsh"
|
||||||
|
|
||||||
|
# Skip compaudit (saves ~150ms on cold start)
|
||||||
|
ZSH_DISABLE_COMPFIX=true
|
||||||
|
|
||||||
export LC_ALL="en_US.UTF-8"
|
export LC_ALL="en_US.UTF-8"
|
||||||
export LC_CTYPE="en_US.UTF-8"
|
export LC_CTYPE="en_US.UTF-8"
|
||||||
|
export HOMEBREW_NO_AUTO_UPDATE=1
|
||||||
|
export GITLAB_URL=https://gitlab.elnino.tech
|
||||||
|
|
||||||
export ANTHROPIC_API_KEY=
|
export ANTHROPIC_API_KEY=
|
||||||
export GEMINI_API_KEY=
|
export GEMINI_API_KEY=
|
||||||
export HOMEBREW_NO_AUTO_UPDATE=1
|
|
||||||
export GITLAB_TOKEN=
|
export GITLAB_TOKEN=
|
||||||
export GITLAB_URL=
|
|
||||||
export TAVILY_API_KEY=
|
export TAVILY_API_KEY=
|
||||||
|
|
||||||
# Set name of the theme to load --- if set to "random", it will
|
# Set name of the theme to load --- if set to "random", it will
|
||||||
@@ -97,10 +100,11 @@ ZSH_THEME=""
|
|||||||
# Add wisely, as too many plugins slow down shell startup.
|
# Add wisely, as too many plugins slow down shell startup.
|
||||||
|
|
||||||
plugins=(
|
plugins=(
|
||||||
|
tmuxinator
|
||||||
git
|
git
|
||||||
yarn
|
yarn
|
||||||
docker
|
# docker
|
||||||
docker-compose
|
# docker-compose
|
||||||
zsh-autosuggestions
|
zsh-autosuggestions
|
||||||
zsh-z
|
zsh-z
|
||||||
zsh-syntax-highlighting # Needs to be the last plugin
|
zsh-syntax-highlighting # Needs to be the last plugin
|
||||||
@@ -135,18 +139,15 @@ source $ZSH/oh-my-zsh.sh
|
|||||||
# Change colors of the LS command output
|
# Change colors of the LS command output
|
||||||
# export LSCOLORS=Dxfxcxdxbxegedabagacad
|
# export LSCOLORS=Dxfxcxdxbxegedabagacad
|
||||||
|
|
||||||
source /Users/oliverhnat/.docker/init-zsh.sh || true # Added by Docker Desktop
|
|
||||||
|
|
||||||
|
|
||||||
# User configuration
|
# User configuration
|
||||||
source ~/.oh-my-zsh/custom/custom_commands.sh
|
source ~/.config/omz-custom/custom_commands.sh
|
||||||
|
source ~/.config/omz-custom/tmux-sessions.sh
|
||||||
|
|
||||||
|
|
||||||
[ -f "/Users/oliverhnat/.ghcup/env" ] && . "/Users/oliverhnat/.ghcup/env" # ghcup-env
|
[ -f "/Users/oliverhnat/.ghcup/env" ] && . "/Users/oliverhnat/.ghcup/env" # ghcup-env
|
||||||
|
|
||||||
. "$HOME/.local/bin/env"
|
. "$HOME/.local/bin/env"
|
||||||
|
|
||||||
export NVM_DIR="$HOME/.nvm"
|
source ~/.config/omz-custom/nvm.sh
|
||||||
[ -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
|
|
||||||
export PATH="$HOME/.local/bin:$PATH"
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
|
|||||||
Reference in New Issue
Block a user