pure 1.0, now as npm global module not submodule

main
Steffen Rademacker 9 years ago
parent 0d02e7e152
commit 4957f151e7

3
.gitmodules vendored

@ -1,6 +1,3 @@
[submodule "zsh/pure"]
path = zsh/pure
url = https://github.com/sindresorhus/pure.git
[submodule "zsh/zsh-syntax-highlighting"]
path = zsh/zsh-syntax-highlighting
url = https://github.com/zsh-users/zsh-syntax-highlighting.git

@ -16,6 +16,7 @@ npm install -g jsonlint
npm install -g htmlhint
npm install -g npm-check-updates
npm install -g pageres
npm install -g pure-prompt
npm install -g recursive-blame
npm install -g stylestats
npm install -g vtop

@ -1 +0,0 @@
Subproject commit 5ade8aeb8a7d45a59841278a9a86090dd880be63

@ -6,7 +6,6 @@ unset file
# a nice prompt
autoload -U promptinit && promptinit
setopt prompt_subst
prompt pure
# completions
@ -20,9 +19,9 @@ compdef gf=git-flow
# case-insensitive (all),partial-word and then substring completion
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
unsetopt menu_complete # do not autoselect the first completion entry
unsetopt menu_complete # do not autoselect the first completion entry
unsetopt flowcontrol
setopt auto_menu # show completion menu on succesive tab press
setopt auto_menu # show completion menu on succesive tab press
setopt complete_in_word
setopt always_to_end
@ -46,11 +45,11 @@ setopt hist_verify
setopt inc_append_history
setopt share_history # share command history data
## smart urls
# smart urls
autoload -U url-quote-magic
zle -N self-insert url-quote-magic
## jobs
# jobs
setopt long_list_jobs
# source some zsh and other plugins

Loading…
Cancel
Save