Last active
January 9, 2026 08:03
-
-
Save pyratin/0354c75f8a1167111593b21fd2ceb6cb to your computer and use it in GitHub Desktop.
.zshrc
This file contains hidden or 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
| plugins=( | |
| git | |
| zsh-autosuggestions | |
| zsh-syntax-highlighting | |
| fast-syntax-highlighting | |
| fzf-tab | |
| ) | |
| setopt nosharehistory | |
| setopt HIST_EXPIRE_DUPS_FIRST | |
| setopt HIST_IGNORE_DUPS | |
| setopt HIST_IGNORE_ALL_DUPS | |
| setopt HIST_FIND_NO_DUPS | |
| setopt HIST_SAVE_NO_DUPS | |
| setopt HIST_REDUCE_BLANKS | |
| export EDITOR=nvim | |
| export NNN_COLORS=2345 | |
| source <(fzf --zsh) | |
| export FZF_TMUX_OPTS | |
| export NVM_DIR="$HOME/.config/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 | |
| alias libresprite='libresprite-simosx.libresprite' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment