Last active
May 16, 2024 08:37
-
-
Save dariocurr/9792ae1fb6ddf736d8fea9e20eb13e26 to your computer and use it in GitHub Desktop.
My .zshrc configuration file for zsh using antigen
This file contains 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
# 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 |
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
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??"