1.5.0 A lot of fixes,,

migration to zsh, more to come!
This commit is contained in:
2021-03-10 20:31:18 +00:00
parent 96011f7715
commit c58ec27adb
7 changed files with 206 additions and 69 deletions

34
zsh/.zshrc Normal file
View File

@@ -0,0 +1,34 @@
source ~/.zplug/init.zsh
source ~/.aliases
# Supports oh-my-zsh plugins and the like
zplug "plugins/git", from:oh-my-zsh
zplug "plugins/colored-man-pages", from:oh-my-zsh
zplug "plugins/command-not-found", from:oh-my-zsh
zplug "plugins/web-search", from:oh-my-zsh
zplug "plugins/tmux", from:oh-my-zsh
zplug "plugins/urltools", from:oh-my-zsh
zplug "oldratlee/hacker-quotes"
zplug "plugins/thefuck", from:oh-my-zsh
zplug "modules/prompt", from:prezto
# Load completion library for those sweet [tab] squares
zplug "lib/completion", from:oh-my-zsh
# Syntax highlighting for commands, load last
zplug "zsh-users/zsh-syntax-highlighting", from:github, defer:3
zplug "zsh-users/zsh-autosuggestions", defer:3
# Install plugins if there are plugins that have not been installed
if ! zplug check --verbose; then
printf "Install? [y/N]: "
if read -q; then
echo; zplug install
fi
fi
# Then, source plugins and add commands to $PATH
zplug load
prompt pure