Skip to content

Instantly share code, notes, and snippets.

@metersk
Created September 24, 2025 01:23
Show Gist options
  • Save metersk/724f90a8a7db1707f55c9bc8e53c21b0 to your computer and use it in GitHub Desktop.
Save metersk/724f90a8a7db1707f55c9bc8e53c21b0 to your computer and use it in GitHub Desktop.
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