dotfiles/zsh/plugins.zsh

83 lines
1.7 KiB
Bash
Raw Normal View History

2018-11-10 14:55:37 +00:00
#!/usr/bin/env zsh
configure_oh_my_zsh() {
2018-12-03 08:27:28 +00:00
# disable automatic updates because OMZ is managed by zgen
DISABLE_AUTO_UPDATE="true"
2018-11-10 14:55:37 +00:00
# use hyphen-insensitive completion (makes `_` and `-` interchangeable)
HYPHEN_INSENSITIVE="true"
# enable command auto-correction
ENABLE_CORRECTION="true"
# display red dots while waiting for completion
COMPLETION_WAITING_DOTS="true"
# disable marking untracked files under VCS as dirty (this makes repository
# status check for large repositories faster)
DISABLE_UNTRACKED_FILES_DIRTY="true"
# command execution time stamp shown in the history
HIST_STAMPS="mm/dd/yyyy"
}
configure_syntax_highlighting() {
FAST_WORK_DIR="$ZSH_DOTFILES/cache"
2018-11-10 14:55:37 +00:00
}
configure_prompt() {
SPACESHIP_PROMPT_ADD_NEWLINE=false
SPACESHIP_PROMPT_ORDER=(
user
host
dir
git
# hg
exec_time
# vi_mode
jobs
exit_code
2019-05-01 13:33:22 +00:00
line_sep
char
)
SPACESHIP_CHAR_SYMBOL="$ "
SPACESHIP_CHAR_SYMBOL_ROOT="# "
SPACESHIP_CHAR_SYMBOL_SECONDARY="> "
SPACESHIP_GIT_STATUS_DELETED="\u2718 "
SPACESHIP_HG_STATUS_DELETED="\u2718 "
SPACESHIP_EXIT_CODE_SYMBOL="\u2718 "
SPACESHIP_JOBS_SYMBOL="\u2726 "
SPACESHIP_USER_SHOW=always
SPACESHIP_DIR_TRUNC=0
SPACESHIP_DIR_TRUNC_REPO=false
SPACESHIP_EXIT_CODE_SHOW=true
}
2018-11-10 14:55:37 +00:00
configure_oh_my_zsh
configure_syntax_highlighting
configure_prompt
2018-11-10 14:55:37 +00:00
source "$ZSH_DOTFILES/zgen/zgen.zsh"
2018-11-10 14:55:37 +00:00
if ! zgen saved; then
zgen oh-my-zsh
zgen oh-my-zsh plugins/git
zgen oh-my-zsh plugins/extract
zgen oh-my-zsh plugins/fasd
is_linux && zgen oh-my-zsh plugins/command-not-found
zgen load zdharma/fast-syntax-highlighting
zgen load denysdovhan/spaceship-prompt spaceship
2018-11-10 14:55:37 +00:00
2019-05-05 23:29:01 +00:00
zgen load chriskempson/base16-shell
2018-11-10 14:55:37 +00:00
zgen save
fi