diff options
Diffstat (limited to 'configs/shared/zsh/.zshrc')
-rw-r--r-- | configs/shared/zsh/.zshrc | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/configs/shared/zsh/.zshrc b/configs/shared/zsh/.zshrc index 721bc8c74cab..349e7cebf0df 100644 --- a/configs/shared/zsh/.zshrc +++ b/configs/shared/zsh/.zshrc @@ -5,8 +5,6 @@ antigen use oh-my-zsh # Bundles from robbyrussell's oh-my-zsh repo. antigen bundle git -antigen bundle alias-tips # friendly reminders to prefer an alias if exists -# antigen bundle common-aliases # be careful with the load order here. Can easily eclipse aliases undesirably antigen bundle extract # extracts archives polymorphically antigen bundle zsh-completions # extracts archives polymorphically @@ -16,19 +14,20 @@ antigen bundle zsh-users/zsh-syntax-highlighting # Theming # This supports different ZSH themes for each machine case "$(hostname)" in - wpcarro.c.googlers.com) antigen theme cloud;; - wpcarro.lon.corp.google.com) antigen theme frisk;; - *) antigen theme refined;; + # desktop + wpcarro.lon.corp.google.com) + antigen theme frisk;; + # cloudtop + wpcarro.c.googlers.com) + antigen theme cloud;; + # laptop + wpcarro.roam.googlers.com) + antigen theme refined;; esac # Leave this last antigen apply -# Personal Configuration - -# Set environment variables for Nix -source ~/.nix-profile/etc/profile.d/nix.sh - # Configure fzf source "$(fzf-share)/key-bindings.zsh" @@ -45,9 +44,7 @@ fi # Directories. zstyle ':completion:*' users root $USER -# use full path instead of $DOTFILES, since DOTFILES is set herein -DOTFILES="$HOME/programming/dotfiles" source "$DOTFILES/configs/shared/zsh/variables.zsh" source "$DOTFILES/configs/shared/zsh/aliases.zsh" source "$DOTFILES/configs/shared/zsh/functions.zsh" -source "$DOTFILES/configs/shared/zsh/dumping_grounds.zsh" +source "$DOTFILES/configs/shared/zsh/zle.zsh" |