Skip to content

Instantly share code, notes, and snippets.

@dariocurr
Last active May 16, 2024 08:37
Show Gist options
  • Save dariocurr/9792ae1fb6ddf736d8fea9e20eb13e26 to your computer and use it in GitHub Desktop.
Save dariocurr/9792ae1fb6ddf736d8fea9e20eb13e26 to your computer and use it in GitHub Desktop.
My .zshrc configuration file for zsh using antigen
# load color parsing
setopt PROMPT_SUBST
autoload -U colors
# load antigen
source $HOME/.antigen/antigen.zsh
# load the oh-my-zsh's library
antigen use oh-my-zsh
# bundles from the default repo (robbyrussell's oh-my-zsh)
antigen bundle colored-man-pages
antigen bundle command-not-found
antigen bundle git
# other bundles
antigen bundle marlonrichert/zsh-autocomplete@main
antigen bundle MichaelAquilina/zsh-you-should-use
antigen bundle unixorn/autoupdate-antigen.zshplugin
antigen bundle zsh-users/zsh-autosuggestions
antigen bundle zsh-users/zsh-syntax-highlighting
# load the theme
antigen theme robbyrussell
# tell Antigen that you're done
antigen apply
bindkey -M menuselect '^M' .accept-line
@giacomorebecchi
Copy link

Me every time I'm setting up a new dev-server: "where the hell is @dariocurr's gist with his .zshrc when I need it??"

@dariocurr
Copy link
Author

dariocurr commented May 6, 2023

I'm glad I brought zsh into your life 😄

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