-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzshrc
61 lines (52 loc) · 1.71 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
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$HOME/.local/bin/:$HOME/bin:$PYENV_ROOT/bin:${HOME}/.krew/bin:${HOME}/.cargo/bin:${HOME}/go/bin:$HOME/.jenv/bin:$PATH"
export EDITOR=nvim
export SYSTEMD_EDITOR=nvim
export USE_GKE_GCLOUD_AUTH_PLUGIN=True
export PYTHON_KEYRING_BACKEND=keyring.backends.fail.Keyring
export DISABLE_AUTO_UPDATE=true
export ANDROID_HOME=$HOME/Android/Sdk
export PATH=$PATH:$ANDROID_HOME/emulator
export PATH=$PATH:$ANDROID_HOME/platform-tools
export PATH=$PATH:$ANDROID_HOME/cmdline-tools/latest/bin/
if [ -d "/usr/share/zsh/scripts/zplug" ]; then
source /usr/share/zsh/scripts/zplug/init.zsh
fi
if [ -f "$HOME/.zplug/init.zsh" ]; then
source $HOME/.zplug/init.zsh
fi
zplug 'darvid/zsh-poetry'
zplug 'zsh-users/zsh-syntax-highlighting'
eval "$(pyenv init -)"
eval "$(starship init zsh)"
eval "$(pyenv virtualenv-init -)"
eval "$(direnv hook zsh)"
eval "$(jenv init -)"
# just --completions zsh > just.zsh
# source just.zsh
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
setopt extendedglob nomatch
unsetopt autocd beep
bindkey -v
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/home/ticosax/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
# https://github.com/hsaunders1904/pyautoenv
plugins=(git docker python aws virtualenv pyenv kubectl systemd minikube pip npm terraform postgres pyautoenv virtualenvwrapper)
export ZSH=~/.oh-my-zsh
source $ZSH/oh-my-zsh.sh
alias s="cd .."
alias ktl="kubectl"
alias k="kubectl"
alias cat="bat"
alias tf="terraform"
unsetopt correct_all
if [ -f $HOME/src/dotfiles/fluvio.zsh ]; then
source $HOME/src/dotfiles/fluvio.zsh
fi