diff options
Diffstat (limited to 'tag-zplug')
-rw-r--r-- | tag-zplug/config/zsh/zshenv | 6 | ||||
-rw-r--r-- | tag-zplug/config/zsh/zshrc | 65 | ||||
-rw-r--r-- | tag-zplug/zshenv | 3 |
3 files changed, 0 insertions, 74 deletions
diff --git a/tag-zplug/config/zsh/zshenv b/tag-zplug/config/zsh/zshenv deleted file mode 100644 index d5ef76a1..00000000 --- a/tag-zplug/config/zsh/zshenv +++ /dev/null @@ -1,6 +0,0 @@ -if [[ -f $ZDOTDIR/zshenv.local ]] -then - . $ZDOTDIR/zshenv.local -fi - -ZPLUG_HOME=${ZPLUG_HOME:-~/projects/zplug} \ No newline at end of file diff --git a/tag-zplug/config/zsh/zshrc b/tag-zplug/config/zsh/zshrc deleted file mode 100644 index 71722dc5..00000000 --- a/tag-zplug/config/zsh/zshrc +++ /dev/null @@ -1,65 +0,0 @@ -# -*- mode: sh; -*- -source ${ZPLUG_HOME:-~/projects/zplug}/init.zsh - -zplug "zsh-users/zsh-completions" -zplug "mafredri/zsh-async" -zplug "sindresorhus/pure", on:"mafredri/zsh-async" -zplug "Tarrasch/zsh-autoenv", as:plugin -zplug "clvv/fasd", hook-build:"PREFIX=$HOME make install" -zplug "tymm/zsh-directory-history", as:command, use:"dir{hist,log}" -zplug "tymm/zsh-directory-history", as:plugin - -WORDCHARS='*?_-[]~.&;!#$%^(){}<>' - -if zplug check Tarrasch/zsh-autoenv -then - AUTOENV_FILE_ENTER=.envrc - AUTOENV_HANDLE_LEAVE=0 - AUTOENV_LOOK_UPWARDS=1 -fi - -# Then, source plugins and add commands to $PATH -zplug load - -# General configuration -setopt auto_cd # Change directories without `cd` - -if zplug check zsh-users/zsh-completions -then - autoload -U compinit && compinit -fi - -if zplug check sindresorhus/pure -then - PURE_GIT_PULL=0 - autoload -Uz promptinit && promptinit - prompt pure &> /dev/null -fi - -if zplug check clvv/fasd -then - if [[ -n $commands[fasd] ]] - then - _FASD_DATA="$HOME/.cache/zsh/fasd-data" - source =fasd - - fasd_cache="$HOME/.fasd-init-zsh" - if [ "$(command -v fasd)" -nt "$fasd_cache" -o ! -s "$fasd_cache" ]; then - fasd --init posix-alias zsh-hook zsh-ccomp zsh-ccomp-install >| "$fasd_cache" - fi - source "$fasd_cache" - unset fasd_cache - else - echo "no fasd" - fi -fi - -if zplug check tymm/zsh-directory-history -then - unsetopt flow_control # Let me use ^S and ^Q - # bindkey '\e[A' directory-history-search-backward - # bindkey '\e[B' directory-history-search-forward - - bindkey -M emacs '^R' history-substring-search-up - bindkey -M emacs '^S' history-substring-search-down -fi diff --git a/tag-zplug/zshenv b/tag-zplug/zshenv deleted file mode 100644 index 354c54da..00000000 --- a/tag-zplug/zshenv +++ /dev/null @@ -1,3 +0,0 @@ -ZDOTDIR="${XDG_CONFIG_HOME:=$HOME/.config}/zsh" - -source "$ZDOTDIR"/.zshenv |