Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save brentfisher/eb7849149ecaa4dea2b52640aa81c569 to your computer and use it in GitHub Desktop.
Save brentfisher/eb7849149ecaa4dea2b52640aa81c569 to your computer and use it in GitHub Desktop.
kevin setup
if [[ -z "$ANTIGEN_INITIALIZED" ]]; then
export ANTIGEN_LOG=/tmp/antigen.log
export ANTIGEN_INITIALIZED=1
source ~/antigen/antigen.zsh
antigen use oh-my-zsh
antigen bundle git
antigen bundle pip
antigen bundle command-not-found
antigen bundle cp
antigen bundle colorize
antigen bundle screen
antigen bundle python
antigen bundle pyenv
#antigen theme spaceship-prompt/spaceship-prompt spaceship
# Syntax highlighting bundle.
antigen bundle zsh-users/zsh-syntax-highlighting
# Load the theme.
#antigen theme robbyrussell
antigen theme agnoster
antigen bundle darvid/zsh-poetry
antigen apply
fi
#setopt histignorealldups sharehistory
setopt EXTENDED_HISTORY
SAVEHIST=100000
HISTSIZE=999999
HISTFILESIZE=999999
HISTFILE=~/.zsh_history
# Use modern completion system
autoload -Uz compinit
compinit
@brentfisher
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment