-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
57 lines (44 loc) · 1.38 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
source ~/.config/antigen.zsh
# Load the virtualenv and virtualenvwrapper plugins.
export WORKON_HOME=$HOME/.virtualenvs
export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python3
source /usr/share/virtualenvwrapper/virtualenvwrapper.sh
# Load the autojump plugin.
. /usr/share/autojump/autojump.sh
# Load the oh-my-zsh's library.
antigen use oh-my-zsh
# Bundles from the default repo (robbyrussell's oh-my-zsh).
antigen bundle autojump
antigen bundle colored-man-pages
antigen bundle command-not-found
antigen bundle extract
antigen bundle git
antigen bundle nmap
antigen bundle npm
antigen bundle thefuck
antigen bundle virtualenv
antigen bundle virtualenvwrapper
# Bundles from zsh-users repos.
antigen bundle zsh-users/zsh-autosuggestions
antigen bundle zsh-users/zsh-completions
antigen bundle zsh-users/zsh-history-substring-search
antigen bundle zsh-users/zsh-syntax-highlighting
# Initialize the NVM bundle.
export NVM_LAZY_LOAD=true
export NVM_AUTO_USE=true
antigen bundle lukechilds/zsh-nvm
# Bundles from other repos.
antigen bundle mrjohannchang/zsh-interactive-cd
# Load the theme.
antigen theme robbyrussell
# Apply all settings to Antigen.
antigen apply
# Launch Starship prompt.
eval "$(starship init zsh)"
# Add pipx to PATH
export PATH="$PATH:/home/a/.local/bin"
# Add Go to PATH
export PATH=$PATH:/usr/local/go/bin
export PATH=$PATH:$(go env GOPATH)/bin
# Configure Aliases
alias i='weechat'