Compare commits
No commits in common. "5a125aeecdcb88dc2871ec1e19cb554e6a6831a0" and "03b7e4a6a978ca48499542008fc92b6a4746066e" have entirely different histories.
5a125aeecd
...
03b7e4a6a9
3 changed files with 4 additions and 20 deletions
14
.zshrc
14
.zshrc
|
@ -1,10 +1,3 @@
|
||||||
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
|
|
||||||
# Initialization code that may require console input (password prompts, [y/n]
|
|
||||||
# confirmations, etc.) must go above this block; everything else may go below.
|
|
||||||
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
|
|
||||||
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
|
||||||
fi
|
|
||||||
|
|
||||||
### Source local secrets
|
### Source local secrets
|
||||||
[ -f ${HOME}/.config/zsh/secrets ] && . ${HOME}/.config/zsh/secrets
|
[ -f ${HOME}/.config/zsh/secrets ] && . ${HOME}/.config/zsh/secrets
|
||||||
|
|
||||||
|
@ -24,8 +17,8 @@ compinit
|
||||||
. ${HOME}/.config/zsh/antibody.zsh
|
. ${HOME}/.config/zsh/antibody.zsh
|
||||||
|
|
||||||
### antidote
|
### antidote
|
||||||
. ~/.antidote/antidote.zsh
|
#. ~/.antidote/antidote.zsh
|
||||||
antidote load
|
#antidote load
|
||||||
|
|
||||||
#. ~/.zsh_plugins.zsh
|
#. ~/.zsh_plugins.zsh
|
||||||
|
|
||||||
|
@ -429,6 +422,3 @@ function ,pkfr() {
|
||||||
alias ,pkpr='piknik -paste | tar xzpvf -'
|
alias ,pkpr='piknik -paste | tar xzpvf -'
|
||||||
|
|
||||||
# vim: set ft=zsh et sw=0 ts=2 sts=0:
|
# vim: set ft=zsh et sw=0 ts=2 sts=0:
|
||||||
|
|
||||||
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
|
||||||
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
ohmyzsh/ohmyzsh path:lib
|
ohmyzsh/ohmyzsh path:lib
|
||||||
|
ohmyzsh/ohmyzsh path:themes/agnoster.zsh-theme
|
||||||
ohmyzsh/ohmyzsh path:plugins/docker
|
ohmyzsh/ohmyzsh path:plugins/docker
|
||||||
ohmyzsh/ohmyzsh path:plugins/virtualenv
|
ohmyzsh/ohmyzsh path:plugins/virtualenv
|
||||||
ohmyzsh/ohmyzsh path:plugins/vagrant
|
ohmyzsh/ohmyzsh path:plugins/vagrant
|
||||||
|
@ -10,4 +11,3 @@ gangleri/pipenv
|
||||||
leophys/zsh-plugin-fzf-finder
|
leophys/zsh-plugin-fzf-finder
|
||||||
bobthecow/git-flow-completion
|
bobthecow/git-flow-completion
|
||||||
wfxr/forgit
|
wfxr/forgit
|
||||||
romkatv/powerlevel10k
|
|
||||||
|
|
|
@ -1,13 +1,7 @@
|
||||||
#!/usr/bin/env zsh
|
#!/usr/bin/env zsh
|
||||||
|
|
||||||
! [[ -z $DEBUG ]] && set -x
|
|
||||||
|
|
||||||
# clone antidote if necessary
|
# clone antidote if necessary
|
||||||
if [[ -d ~/.antidote ]]; then
|
[[ -e ~/.antidote ]] || git clone https://github.com/mattmc3/antidote.git ~/.antidote
|
||||||
git -C ~/.antidote pull
|
|
||||||
else
|
|
||||||
git clone https://github.com/mattmc3/antidote.git ~/.antidote
|
|
||||||
fi
|
|
||||||
|
|
||||||
# source antidote
|
# source antidote
|
||||||
. ~/.antidote/antidote.zsh
|
. ~/.antidote/antidote.zsh
|
||||||
|
|
Loading…
Reference in a new issue