diff options
Diffstat (limited to '30_Completion.zsh')
-rw-r--r-- | 30_Completion.zsh | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/30_Completion.zsh b/30_Completion.zsh index 42dc660..374ecdb 100644 --- a/30_Completion.zsh +++ b/30_Completion.zsh @@ -1,12 +1,23 @@ #!/bin/zsh -# Fichier de conf pour la personnalisation de la complétion automagique :-) +## +## Part of configuration files for Zsh 4 +## by Hugues Hiegel <hugues@nullpart.net> +## +## NO WARRANTY PROVIDED, USE AT YOUR OWN RISKS +## +## You are encouraged to use, modify, and redistribute +## these files with or without this notice. +## +# Fichier de conf pour la personnalisation de la complĂtion automagique :-) # Hugues HIEGEL <hugues@nullpart.net> # jeu mar 3 10:00:44 CET 2005 autoload -U compinit 2> /dev/null compinit -i +## Affiche le menu de sĂlection si au moins 2 entrĂes sont possibles zstyle ':completion:*' menu select=2 +## Utilise les couleurs dĂ©finies avec dircolors zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS} # Premiers essais... |