-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
65 lines (47 loc) · 1.84 KB
/
.zshrc
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
54
55
56
57
58
59
60
61
62
63
64
65
# Import functions
FUNK=$HOME/groovy_functions.sh
[[ -f "$FUNK" ]] && source "$FUNK" || echo "Could not find functions file :-("
load_groovy_variables
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
# solarized dircolors
# eval "$(dircolors ~/dircolors.256dark)"
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
# ZSH_THEME="robbyrussell"
ZSH_THEME="agnoster"
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(
git
# notify
# nvm
)
source "$ZSH/oh-my-zsh.sh"
show_groovy_banner
[[ -f /usr/share/undistract-me/long-running.bash ]] \
&& source /usr/share/undistract-me/long-running.bash \
&& notify_when_long_running_commands_finish_install
# shellcheck source=/dev/null
[[ -f "$HOME/completions/zsh/tmuxinator.zsh" ]] && source "$HOME/completions/zsh/tmuxinator.zsh"
# Fix home and end keybinding issue
# bindkey "${terminfo[khome]}" beginning-of-line
# bindkey "${terminfo[kend]}" end-of-line
# gopass zsh completion fix (https://github.com/gopasspw/gopass/issues/585#issuecomment-355416844)
# shellcheck source=/dev/null
# source "$HOME/completions/zsh/gopass.zsh"
# compdef _gopass gopass
# autoload -U compinit && compinit
# Vault
# autoload -U +X bashcompinit && bashcompinit
# complete -o nospace -C /usr/bin/vault vault
# Terraform
# complete -o nospace -C /usr/bin/terraform terraform
# Load Angular CLI autocompletion.
# source <(ng completion script)
[[ -f /usr/share/nvm/init-nvm.sh ]] && source /usr/share/nvm/init-nvm.sh
# Disable bell
xset b off