At this point the following doesn't work. - prompt - history - most autocomplete Additionally with the tmux script getting loaded zplug we are getting a double render issue, which is increasing the start up time. I'll probably move this before the .zshrc set to short circuit having to set up all zplug script twice before having a useable shell.
		
			
				
	
	
		
			56 lines
		
	
	
		
			973 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			973 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# vim: syn=zsh
 | 
						|
 | 
						|
source ${ZPLUG_HOME}/init.zsh
 | 
						|
 | 
						|
zstyle ':tmux:auto-start' local 'yes'
 | 
						|
zstyle ':tmux:auto-start' name 'tmux'
 | 
						|
zplug "${ZDIR}/modules/tmux/", \
 | 
						|
      from:local, \
 | 
						|
      defer:0, \
 | 
						|
      as:plugin
 | 
						|
 | 
						|
zplug "zdharma/fast-syntax-highlighting", \
 | 
						|
      as:plugin, \
 | 
						|
      defer:2
 | 
						|
 | 
						|
zplug "hlissner/zsh-autopair", \
 | 
						|
      as:plugin, \
 | 
						|
      defer:2
 | 
						|
 | 
						|
zplug "zsh-users/zsh-history-substring-search", \
 | 
						|
      as:plugin, \
 | 
						|
      defer:2
 | 
						|
 | 
						|
zplug "zpm-zsh/autoenv"
 | 
						|
 | 
						|
zplug "zsh-users/zsh-autosuggestions", \
 | 
						|
      as:plugin, \
 | 
						|
      defer:2
 | 
						|
 | 
						|
zplug "junegunn/fzf-bin", \
 | 
						|
      from:gh-r, \
 | 
						|
      as:command, \
 | 
						|
      rename-to:fzf
 | 
						|
 | 
						|
zplug "zdharma/zsh-diff-so-fancy", \
 | 
						|
      as:command, \
 | 
						|
      use:"bin/{git-dsf,diff-so-fancy}"
 | 
						|
 | 
						|
FZF_TMUX=1
 | 
						|
FZF_TMUX_HEIGHT=30%
 | 
						|
zplug "${ZDIR}/modules/fzf/", \
 | 
						|
      from:local, \
 | 
						|
      use:"fzf.zsh", \
 | 
						|
      as:plugin
 | 
						|
zplug "${ZDIR}/modules/fzf/", \
 | 
						|
      from:local, \
 | 
						|
      use:"fzf-tmux", \
 | 
						|
      as:command
 | 
						|
 | 
						|
 | 
						|
 | 
						|
env_loader zplug
 | 
						|
 | 
						|
zplug load
 | 
						|
 |