mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-12-26 22:22:23 +00:00
speed up zsh
This commit is contained in:
parent
1b226a4205
commit
983aaefa5c
1 changed files with 10 additions and 3 deletions
|
@ -35,10 +35,17 @@ zinit light-mode for \
|
||||||
|
|
||||||
### End of Zinit's installer chunk
|
### End of Zinit's installer chunk
|
||||||
|
|
||||||
|
# some magic to run compinit stuff only once a day, which should speed up zsh startup a good bit
|
||||||
# compinit must be ran before fzf-tab, but fzf-tab must be before syntax highlighting etc
|
|
||||||
autoload -Uz compinit
|
autoload -Uz compinit
|
||||||
|
for dump in $ZSHDOTDIR/.zcompdump(N.mh+24); do
|
||||||
compinit
|
compinit
|
||||||
|
done
|
||||||
|
compinit -C
|
||||||
|
|
||||||
|
# this would be the regular version of the above compinit code:
|
||||||
|
# compinit must be ran before fzf-tab, but fzf-tab must be before syntax highlighting etc
|
||||||
|
#autoload -Uz compinit
|
||||||
|
#compinit
|
||||||
|
|
||||||
zinit light "Aloxaf/fzf-tab"
|
zinit light "Aloxaf/fzf-tab"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue