1
Fork 0

Nothing really

This commit is contained in:
Hadeed 2023-09-25 02:42:18 +05:00
parent 0b84f75537
commit f6403a5554
2 changed files with 2 additions and 1 deletions

View file

@ -14,6 +14,7 @@ function zsh_add_plugin() {
zsh_add_file "zsh-aliases" zsh_add_file "zsh-aliases"
zsh_add_file "zsh-functions" zsh_add_file "zsh-functions"
zsh_add_file "zsh-options" zsh_add_file "zsh-options"
zsh_add_file "zsh-completion"
zsh_add_plugin "Aloxaf/fzf-tab" zsh_add_plugin "Aloxaf/fzf-tab"
zsh_add_plugin "ahmubashshir/zinsults" zsh_add_plugin "ahmubashshir/zinsults"
@ -21,7 +22,6 @@ zsh_add_plugin "zdharma-continuum/fast-syntax-highlighting"
zsh_add_plugin "zsh-users/zsh-autosuggestions" zsh_add_plugin "zsh-users/zsh-autosuggestions"
zsh_add_plugin "zsh-users/zsh-completions" zsh_add_plugin "zsh-users/zsh-completions"
zsh_add_file "zsh-completion"
zsh_add_file "zsh-bindings" zsh_add_file "zsh-bindings"
# vim: filetype=zsh # vim: filetype=zsh

View file

@ -2,6 +2,7 @@ create_dir "$HOME/.cache/zsh"
autoload -Uz compinit autoload -Uz compinit
compinit -d "$HOME/.cache/zsh/zcompdump" compinit -d "$HOME/.cache/zsh/zcompdump"
zmodload zsh/complist zmodload zsh/complist
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}' zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}'
# vim: filetype=zsh # vim: filetype=zsh