about summary refs log tree commit diff
path: root/configs/shared/zsh/.zshrc
blob: 721bc8c74cab09ed6f3cb41cfbfb1c2aad1748b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
source ~/antigen.zsh

# Load the oh-my-zsh library
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

# Syntax highlighting
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;;
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"

# Configure fasd
eval "$(fasd --init auto)"

# Configure g4 with zsh
if [ -f /etc/bash_completion.d/g4d ]; then
  source /etc/bash_completion.d/g4d
fi
# the above line slows tab-completion down dramatically because it attemtps to
# autocomplete for the 600k+ users found in `compgen -u`. Below is a fix which
# also restores the function of `cd ~<tab>` to display only ZSH Named
# 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"