Add McFly to zsh

This commit is contained in:
Jonny Barnes 2022-03-13 07:09:28 +00:00
parent d800efd58f
commit 25864875c6

View file

@ -1,7 +1,8 @@
#### FIG ENV VARIABLES #### # Fig pre block. Keep at the top of this file.
# Please make sure this block is at the start of this file. export PATH="${PATH}:${HOME}/.local/bin"
[ -s ~/.fig/shell/pre.sh ] && source ~/.fig/shell/pre.sh eval "$(fig init zsh pre)"
#### END FIG ENV VARIABLES ####
# User configuration # User configuration
# history # history
@ -124,12 +125,13 @@ fi
# https://github.com/wfxr/forgit # https://github.com/wfxr/forgit
test -e $HOME/git/forgit/forgit.plugin.zsh && source ~/git/forgit/forgit.plugin.zsh test -e $HOME/git/forgit/forgit.plugin.zsh && source ~/git/forgit/forgit.plugin.zsh
# McFly
if type mcfly &> /dev/null; then
eval $(mcfly init zsh)
fi
# Init starship prompt -- https://starship.rs # Init starship prompt -- https://starship.rs
eval "$(starship init zsh)" eval "$(starship init zsh)"
# Fig post block. Keep at the bottom of this file.
#### FIG ENV VARIABLES #### eval "$(fig init zsh post)"
[ -s ~/.fig/fig.sh ] && source ~/.fig/fig.sh
#### END FIG ENV VARIABLES ####