home | blog | art | now | git gpg | email | rss

dotfiles

My personal dotfiles
git clone git://pollux.codes/git/dotfiles.git
Log | Files | Refs | LICENSE

05_zinit.zsh (506B)


      1 ZINIT_HOME="${XDG_DATA_HOME:-${HOME}/.local/share}/zinit/zinit.git"
      2 
      3 if [ ! -d "$ZINIT_HOME" ]; then
      4   mkdir -p "$(dirname $ZINIT_HOME)"
      5   git clone https://github.com/zdharma-continuum/zinit.git "$ZINIT_HOME"
      6 fi
      7 
      8 source "${ZINIT_HOME}/zinit.zsh"
      9 zinit ice depth=1
     10 zinit light zsh-users/zsh-autosuggestions
     11 zinit light zsh-users/zsh-syntax-highlighting
     12 zinit light zsh-users/zsh-completions
     13 zinit light Aloxaf/fzf-tab
     14 zinit light jeffreytse/zsh-vi-mode
     15 
     16 autoload -U compinit && compinit
     17 
     18 zinit cdreplay -q