configs/dot.zshrc

40 lines
1.1 KiB
Bash
Raw Normal View History

2015-02-10 03:59:59 +01:00
bindkey -v
2022-11-21 12:55:41 +01:00
source ~/pkg/zgen/zgen.zsh
2019-09-04 20:42:15 +02:00
source ~/.zsh/kitty.compl.zsh
2015-06-02 15:12:47 +02:00
if ! zgen saved; then
2016-02-26 02:28:15 +01:00
echo "running zgen"
zgen oh-my-zsh
zgen oh-my-zsh plugins/extract
zgen oh-my-zsh plugins/pj
zgen oh-my-zsh plugins/encode64
zgen oh-my-zsh plugins/urltools
2020-08-11 21:03:52 +02:00
zgen oh-my-zsh plugins/nvm
2016-02-26 02:28:15 +01:00
zgen load zsh-users/zsh-syntax-highlighting
zgen load zsh-users/zaw
zgen load zsh-users/zsh-completions src
zgen save
2015-06-02 15:12:47 +02:00
fi
2017-11-24 18:34:41 +01:00
source ~/.zsh/koehr.theme.zsh
2016-02-26 02:28:15 +01:00
setopt HIST_IGNORE_DUPS
2015-07-11 13:24:07 +02:00
COMPLETION_WAITING_DOTS="true"
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern)
ZSH_HIGHLIGHT_PATTERNS+=('rm -fr*' 'fg=white,bold,bg=red')
ZSH_HIGHLIGHT_PATTERNS+=('rm -rf*' 'fg=white,bold,bg=red')
2022-11-21 12:55:41 +01:00
PROJECT_PATHS=(~/src/Spenoki ~/src/koehr ~/src/pkg/)
2019-10-26 16:41:36 +02:00
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/home/nk/src/pkg/google-cloud-sdk/path.zsh.inc' ]; then . '/home/nk/src/pkg/google-cloud-sdk/path.zsh.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '/home/nk/src/pkg/google-cloud-sdk/completion.zsh.inc' ]; then . '/home/nk/src/pkg/google-cloud-sdk/completion.zsh.inc'; fi
2020-08-11 21:03:52 +02:00
2021-01-11 23:21:24 +01:00
source ~/.profile
export PATH="/home/nk/.local/opt/deta/bin:$PATH"