Created
September 24, 2025 01:23
-
-
Save metersk/724f90a8a7db1707f55c9bc8e53c21b0 to your computer and use it in GitHub Desktop.
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
| export ZSH="$HOME/.oh-my-zsh" | |
| fpath+=("$(brew --prefix)/share/zsh/site-functions") | |
| fpath+=~/.zfunc | |
| autoload -Uz compinit && compinit | |
| autoload -U promptinit | |
| promptinit | |
| prompt pure | |
| ZSH_THEME="" | |
| plugins=( | |
| git | |
| z | |
| zsh-autosuggestions | |
| ) | |
| source $ZSH/oh-my-zsh.sh | |
| # bind control + j to accept zsh-autosuggestions | |
| bindkey '^j' autosuggest-accept | |
| [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh | |
| alias printenv="env | sort -f" | |
| export PYENV_ROOT="$HOME/.pyenv" | |
| command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH" | |
| eval "$(pyenv init -)" | |
| eval "$(pyenv virtualenv-init -)" | |
| pyenv local 3.11.4 | |
| export ERL_AFLAGS="-kernel shell_history enabled" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment