62 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# vim: syn=zsh
 | 
						|
 | 
						|
source ${ZPLUG_HOME}/init.zsh
 | 
						|
 | 
						|
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}"
 | 
						|
 | 
						|
zplug "${ZDIR}/modules/fzf/", \
 | 
						|
      from:local, \
 | 
						|
      use:"fzf.zsh", \
 | 
						|
      as:plugin
 | 
						|
zplug "${ZDIR}/modules/fzf/", \
 | 
						|
      from:local, \
 | 
						|
      use:"fzf-tmux", \
 | 
						|
      as:command
 | 
						|
 | 
						|
zplug "${ZDIR}/modules/history/", \
 | 
						|
      from:local, \
 | 
						|
      as:plugin
 | 
						|
 | 
						|
zplug "${ZDIR}/modules/complete/", \
 | 
						|
      from:local, \
 | 
						|
      as:plugin
 | 
						|
 | 
						|
zplug "${ZDIR}/modules/keybinds/", \
 | 
						|
      from:local, \
 | 
						|
      as:plugin
 | 
						|
 | 
						|
zplug "denysdovhan/spaceship-prompt", \
 | 
						|
      use:spaceship.zsh, \
 | 
						|
      from:github, \
 | 
						|
      as:theme
 | 
						|
 | 
						|
env_loader zplug
 | 
						|
 | 
						|
zplug load
 | 
						|
 |