ZshRC (raw, dl)
TheJameyBear Aug 03, 2018 (shells/zsh)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | source ~/.zplug/init.zsh
zplug "zsh-users/zsh-history-substring-search"
zplug "dracula/zsh", as:theme
zplug "Jxck/dotfiles", as:command, use:"bin/{histuniq,color}"
zplug "tcnksm/docker-alias", use:zshrc
zplug "k4rthik/git-cal", as:command, frozen:1
zplug "junegunn/fzf-bin", from:gh-r, as:command, rename-to:fzf, use:"*darwin*amd64*"
zplug "plugins/git", from:oh-my-zsh
zplug "modules/prompt", from:prezto
zplug "jhawthorn/fzy", as:command, rename-to:fzy, hook-build:"make && sudo make install"
zplug "b4b4r07/enhancd", at:v1
zplug "mollifier/anyframe", at:4c23cb60
zplug "b4b4r07/79ee61f7c140c63d2786", from:gist, as:command, use:get_last_pane_path.sh
zplug "b4b4r07/hello_bitbucket", from:bitbucket, as:command, use:"*.sh"
zplug "b4b4r07/httpstat", as:command, use:'(*).sh', rename-to:'$1'
zplug "stedolan/jq", from:gh-r, as:command, rename-to:jq
zplug "b4b4r07/emoji-cli", on:"stedolan/jq"
zplug "zsh-users/zsh-syntax-highlighting", defer:2
zplug 'dracula/zsh', as:theme
zplug load --verbose
zplug 'zplug/zplug', hook-build:'zplug --self-manage'
export PATH="/usr/lib/ccache/bin/:$PATH"
[[ $- != *i* ]] && return
setopt autocd
setopt completealiases
setopt histignorealldups
setopt histfindnodups
setopt incappendhistory
setopt sharehistory
function zsrc() {
local cache=""
[[ -n $ZSH_CACHE_DIR ]] && cache=$ZSH_CACHE_DIR || cache="${ZDOTDIR:-$HOME}/.cache"
autoload -U compinit zrecompile
compinit -d "$cache/zcomp-$HOST"
for f in ${ZDOTDIR:-$HOME}/.zshrc "$cache/zcomp-$HOST"; do
zrecompile -p $f && command rm -f $f.zwc.old
done
source ${ZDOTDIR:-$HOME}/.zshrc
}
[[ ! -e ${ZDOTDIR:-$HOME}/.zshrc.zwc ]] && zsrc &>/dev/null
alias install='aurman -S'
alias l='ls'
alias la='ls -A'
alias ll='ls -lA'
alias ls='ls --color=auto'
alias upd='sudo pacman -Syyu'
alias pac='sudo pacman --color auto'
alias merge='xrdb -merge ~/.Xresources'
alias grubup='sudo grub-mkconfig -o /boot/grub/grub.cfg'
alias mirrors='sudo reflector --score 100 --fastest 10 --sort rate --save /etc/pacman.d/mirrorlist --verbose'
al-info
|
x