aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/zsh/autocompletion.zsh
diff options
context:
space:
mode:
authorcbreton <c.breton@fullsave.com>2019-10-10 09:14:24 +0200
committercbreton <c.breton@fullsave.com>2019-10-10 09:14:24 +0200
commitd7a3c56269db8e2066412da2d7b3808e531b480c (patch)
treef9a5af2ff0b005b452c13f74ae88c88a670994c8 /dotfiles/zsh/autocompletion.zsh
parente0bf2ecad97b5771784c5a2fb144144245e2e93c (diff)
downloaddotfiles_dotdrop-d7a3c56269db8e2066412da2d7b3808e531b480c.tar.xz
dotfiles_dotdrop-d7a3c56269db8e2066412da2d7b3808e531b480c.zip
Rename some dotfile and add a binding for search in history
Diffstat (limited to 'dotfiles/zsh/autocompletion.zsh')
-rwxr-xr-xdotfiles/zsh/autocompletion.zsh35
1 files changed, 0 insertions, 35 deletions
diff --git a/dotfiles/zsh/autocompletion.zsh b/dotfiles/zsh/autocompletion.zsh
deleted file mode 100755
index 15ef28c..0000000
--- a/dotfiles/zsh/autocompletion.zsh
+++ /dev/null
@@ -1,35 +0,0 @@
-# ██
-# ░██
-# ██████ ██████░██
-# ░░░░██ ██░░░░ ░██████
-# ██ ░░█████ ░██░░░██
-# ██ ░░░░░██░██ ░██
-# ██████ ██████ ░██ ░██
-# ░░░░░░ ░░░░░░ ░░ ░░
-#
-# ▓▓▓▓▓▓▓▓▓▓
-# ░▓ author ▓ xero <x@xero.nu>
-# ░▓ code ▓ http://code.xero.nu/dotfiles
-# ░▓ mirror ▓ http://git.io/.files
-# ░▓▓▓▓▓▓▓▓▓▓
-# ░░░░░░░░░░
-#
-#█▓▒░ autocompletion systems
-autoload -Uz compinit
-compinit
-autoload -U ~/.zsh/completion/*(:t)
-zstyle ':completion:*' auto-description 'specify: %d'
-zstyle ':completion:*' completer _expand _complete _correct _approximate
-zstyle ':completion:*' format 'Completing %d'
-zstyle ':completion:*' group-name ''
-zstyle ':completion:*' menu select=2 eval "$(dircolors -b)"
-zstyle ':completion:*:default' list-colors ${(s.:.)LS_COLORS}
-zstyle ':completion:*' list-colors ''
-zstyle ':completion:*' list-prompt %SAt %p: hit TAB for more, or the character to insert%s
-zstyle ':completion:*' matcher-list '' 'm:{a-z}={A-Z}' 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=* l:|=*'
-zstyle ':completion:*' menu select=long
-zstyle ':completion:*' select-prompt %SScrolling active: current selection at %p%s
-zstyle ':completion:*' use-compctl false
-zstyle ':completion:*' verbose true
-zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;31'
-zstyle ':completion:*:kill:*' command 'ps -u $USER -o pid,%cpu,tty,cputime,cmd'