Compare commits
2 commits
46f832ddc7
...
c922ce552c
Author | SHA1 | Date | |
---|---|---|---|
c922ce552c | |||
9d1b56ddb3 |
2 changed files with 12 additions and 3 deletions
|
@ -21,4 +21,4 @@ format = "git"
|
||||||
[aliases]
|
[aliases]
|
||||||
wip = ["ci", "-m", "wip"]
|
wip = ["ci", "-m", "wip"]
|
||||||
la = ["log", "-r", "all()"]
|
la = ["log", "-r", "all()"]
|
||||||
bsm = ["bookmark", "set", "main"]
|
bsm = ["bookmark", "set", "main", "-r", "latest(~empty())"]
|
||||||
|
|
|
@ -5,8 +5,17 @@
|
||||||
[[ -d ${ZDOTDIR:-~}/.antidote ]] ||
|
[[ -d ${ZDOTDIR:-~}/.antidote ]] ||
|
||||||
git clone https://github.com/mattmc3/antidote ${ZDOTDIR:-~}/.antidote
|
git clone https://github.com/mattmc3/antidote ${ZDOTDIR:-~}/.antidote
|
||||||
|
|
||||||
source ${ZDOTDIR:-~}/.antidote/antidote.zsh
|
|
||||||
antidote load
|
# antidote load
|
||||||
|
# a "faster" antidote load
|
||||||
|
zplugins=${ZDOTDIR:-~}/.zplugins
|
||||||
|
if [[ ! ${zplugins}.zsh -nt $zplugins ]]; then
|
||||||
|
(
|
||||||
|
source ${ZDOTDIR:-~}/.antidote/antidote.zsh
|
||||||
|
antidote bundle <${zplugins} > ${zplugins}.zsh
|
||||||
|
)
|
||||||
|
fi
|
||||||
|
source ${zplugins}.zsh
|
||||||
|
|
||||||
path=(
|
path=(
|
||||||
$HOME/{,.dotfiles/}{,s}bin(N)
|
$HOME/{,.dotfiles/}{,s}bin(N)
|
||||||
|
|
Loading…
Reference in a new issue