Fig
This commit is contained in:
parent
665ea59a02
commit
10e8e6728c
1 changed files with 12 additions and 0 deletions
12
zsh/zshrc
12
zsh/zshrc
|
@ -1,3 +1,10 @@
|
||||||
|
# Fig pre block. Keep at the top of this file.
|
||||||
|
export PATH="${PATH}:${HOME}/.local/bin"
|
||||||
|
if [[ $(whence -p fig 2> /dev/null) ]]; then
|
||||||
|
FIG_FOUND=1
|
||||||
|
eval "$(fig init zsh pre)"
|
||||||
|
fi
|
||||||
|
|
||||||
HISTFILE=~/.histfile
|
HISTFILE=~/.histfile
|
||||||
HISTSIZE=10000
|
HISTSIZE=10000
|
||||||
SAVEHIST=10000
|
SAVEHIST=10000
|
||||||
|
@ -167,3 +174,8 @@ LS_PICKER="exa"
|
||||||
for funcfile in $HOME/.zsh.d/* ; do
|
for funcfile in $HOME/.zsh.d/* ; do
|
||||||
source "${funcfile}"
|
source "${funcfile}"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
if [[ $FIG_FOUND == 1 ]]; then
|
||||||
|
# Fig post block. Keep at the bottom of this file.
|
||||||
|
eval "$(fig init zsh post)"
|
||||||
|
fi
|
||||||
|
|
Loading…
Add table
Reference in a new issue