Include custom zsh functions
This commit is contained in:
parent
52d993547c
commit
70e3fe7faa
2
rcrc
2
rcrc
|
@ -1,4 +1,4 @@
|
||||||
DOTFILES_DIRS="$HOME/dotfiles-local $HOME/dotfiles"
|
DOTFILES_DIRS="$HOME/dotfiles-local $HOME/dotfiles"
|
||||||
EXCLUDES="install.sh README.md"
|
EXCLUDES="install.sh README.md"
|
||||||
SYMLINK_DIRS="composer zsh_profile.d"
|
SYMLINK_DIRS="composer functions zsh_profile.d"
|
||||||
TAGS="git npm php tmux vim zsh"
|
TAGS="git npm php tmux vim zsh"
|
||||||
|
|
|
@ -93,6 +93,10 @@ alias zshconfig="vim ~/.zshrc"
|
||||||
# https://superuser.com/questions/613685/how-stop-zsh-from-eating-space-before-pipe-symbol
|
# https://superuser.com/questions/613685/how-stop-zsh-from-eating-space-before-pipe-symbol
|
||||||
ZLE_REMOVE_SUFFIX_CHARS=""
|
ZLE_REMOVE_SUFFIX_CHARS=""
|
||||||
|
|
||||||
|
for function in $HOME/.zsh/functions/*; do
|
||||||
|
source $function
|
||||||
|
done
|
||||||
|
|
||||||
for zsh_source in $HOME/.zsh_profile.d/*.zsh; do
|
for zsh_source in $HOME/.zsh_profile.d/*.zsh; do
|
||||||
source $zsh_source
|
source $zsh_source
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue