# HG changeset patch # User zegervdv # Date 1643535600 -3600 # Node ID c071fc2dc6fcadaf85b6ec50e892d2c7176e91ed # Parent 15d6c097f1c9c4416d769d76fdeb134bf932d8f1 Run compinit after loading all plugins and functions diff -r 15d6c097f1c9 -r c071fc2dc6fc dot_zshrc --- a/dot_zshrc Sat Jan 29 22:16:56 2022 +0100 +++ b/dot_zshrc Sun Jan 30 10:40:00 2022 +0100 @@ -190,8 +190,6 @@ zstyle ':completion:*:*:nvim:*' ignored-patterns '*.(o|hex|elf|pyc|pdf|dup)' zstyle ':completion:*:*:nvim:*' file-sort modification -autoload -U compinit && compinit - # fg when pressing Ctrl+Z function fancy-ctrl-z () { if [[ $#BUFFER -eq 0 ]]; then @@ -269,3 +267,5 @@ } ZSH_AUTOSUGGEST_STRATEGY=histdb_top_here + +autoload -U compinit && compinit