.../../.../...../

This commit is contained in:
Spotlight 2019-08-10 11:50:55 -05:00
parent 9e4503772a
commit d5d135a739
Signed by: spotlight
GPG key ID: 874AA355B3209BDC
2 changed files with 27 additions and 0 deletions

5
zshrc
View file

@ -14,6 +14,7 @@ zplug "zsh-users/zsh-completions", defer:2
bindkey "$terminfo[kcuu1]" history-beginning-search-backward
bindkey "$terminfo[kcud1]" history-beginning-search-forward
source $HOME/.zsh/expand-multiple-dots.zsh # cd .../.../<tab>?
setopt prompt_subst # Make sure prompt is able to be generated properly.
setopt auto_cd # Get that ~ in here.
setopt hist_ignore_all_dups # Goodbye, random duplicates.
@ -121,3 +122,7 @@ fi
if [ -d $HOME/.ghcup ]; then
export PATH="$HOME/.cabal/bin:$HOME/.ghcup/bin:$PATH"
fi
if [ -d $HOME/.fastlane ]; then
export PATH="$HOME/.fastlane/bin:$PATH"
fi