"refactoring" to use a more neutral ~/.dotfiles folder.

This commit is contained in:
maxi 2025-06-15 01:11:18 +02:00
parent 8ed93ac6e3
commit 161c411e76
6 changed files with 51 additions and 19 deletions

21
TERMINAL.AUTOCOMPLETE.SH Normal file
View file

@ -0,0 +1,21 @@
# Enable Zsh completion system
autoload -Uz compinit
compinit
# Optional: Enable menu selection with tab
zstyle ':completion:*' menu select
# Optional: Case-insensitive completion
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}'
# Optional: Show completion matches in columns
setopt AUTO_LIST
# Optional: Automatically list choices on ambiguous completion
setopt LIST_AMBIGUOUS
# Optional: Complete as much as possible on first tab
setopt AUTO_MENU
# Optional: Allow completion from within a word
setopt COMPLETE_IN_WORD