updated .zshrc
This commit is contained in:
parent
779a851392
commit
2f4b0320fc
1 changed files with 17 additions and 24 deletions
41
dot.zshrc
41
dot.zshrc
|
@ -1,40 +1,33 @@
|
|||
bindkey -v
|
||||
source ~/.profile
|
||||
source /usr/share/zsh/scripts/zgen/zgen.zsh
|
||||
|
||||
source ~/src/pkg/zgen/zgen.zsh
|
||||
|
||||
if ! zgen saved; then
|
||||
echo "running zgen"
|
||||
echo "running zgen"
|
||||
|
||||
zgen oh-my-zsh
|
||||
zgen oh-my-zsh plugins/git
|
||||
zgen oh-my-zsh plugins/git-extras
|
||||
zgen oh-my-zsh plugins/ruby
|
||||
zgen oh-my-zsh plugins/coffee
|
||||
zgen oh-my-zsh plugins/archlinux
|
||||
zgen oh-my-zsh plugins/extract
|
||||
zgen oh-my-zsh plugins/screen
|
||||
zgen oh-my-zsh plugins/sudo
|
||||
zgen oh-my-zsh plugins/systemd
|
||||
zgen oh-my-zsh plugins/pj
|
||||
zgen oh-my-zsh plugins/command-not-found
|
||||
zgen oh-my-zsh plugins/encode64
|
||||
zgen oh-my-zsh plugins/urltools
|
||||
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
|
||||
|
||||
zgen load zsh-users/zsh-syntax-highlighting
|
||||
zgen load zsh-users/zaw
|
||||
zgen load zsh-users/zsh-completions src
|
||||
zgen load zsh-users/zsh-syntax-highlighting
|
||||
zgen load zsh-users/zaw
|
||||
zgen load zsh-users/zsh-completions src
|
||||
|
||||
zgen load https://gist.github.com/9263734.git psy
|
||||
zgen load https://gist.github.com/9263734.git psy
|
||||
|
||||
zgen save
|
||||
zgen save
|
||||
fi
|
||||
|
||||
setopt HIST_IGNORE_DUPS
|
||||
|
||||
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')
|
||||
PROJECT_PATHS=(~/sources ~/sources/*)
|
||||
|
||||
alias tm=todotxt-machine
|
||||
PROJECT_PATHS=(~/src ~/src/*)
|
||||
|
||||
export NVM_DIR="/home/nk/.nvm"
|
||||
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
|
||||
|
|
Loading…
Reference in a new issue