Created
August 24, 2024 07:18
-
-
Save muokicaleb/fca27ae97c0f70bfb54daa0aa6f43aa5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
autoload -Uz compinit | |
compinit | |
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then | |
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" | |
fi | |
source ~/powerlevel10k/powerlevel10k.zsh-theme | |
source /opt/homebrew/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh | |
source /opt/homebrew/share/zsh-autosuggestions/zsh-autosuggestions.zsh | |
eval "$(/opt/homebrew/bin/brew shellenv)" | |
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 | |
source '/opt/homebrew/opt/autoenv/activate.sh' | |
eval "$(zoxide init --cmd cd zsh)" | |
source <(fzf --zsh) | |
eval "$(rbenv init - zsh)" | |
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh | |
export CLICOLOR=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment