12345678910111213141516171819202122232425262728293031323334353637383940 |
- #
- # Zsh configuration file
- # Since 2006, kolter <kolter@openics.org>
- #
- # This file is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY
- #
- source ~/.zplug/init.zsh
- export ZSHDOTDIR=~/.zsh
- zplug "modules/archive", from:prezto
- zplug "modules/completion", from:prezto
- zplug "modules/directory", from:prezto
- zplug "modules/dpkg", from:prezto
- zplug "modules/editor", from:prezto
- zplug "modules/environment", from:prezto
- zplug "modules/terminal", from:prezto
- zplug "modules/editor", from:prezto
- zplug "modules/git", from:prezto
- zplug "modules/history", from:prezto
- zplug "modules/directory", from:prezto
- zplug "modules/spectrum", from:prezto
- zplug "modules/rsync", from:prezto
- zplug "modules/tmux", from:prezto
- zplug "modules/syntax-highlighting", from:prezto, defer:2
- zplug "modules/history-substring-search", from:prezto
- zplug "mafredri/zsh-async"
- zplug "k0lter/zsh-themes", as:theme
- if [[ -d "${ZSHDOTDIR}/config" ]]; then
- zplug "${ZSHDOTDIR}/config", from:local, defer:1
- fi
- if ! zplug check --verbose; then
- zplug install
- fi
- zplug load
|