diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index bf9ae19..5b43cc3 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -1,14 +1,12 @@ # vim:set ft=zsh: -# Fix for foot terminfo not installed on most servers -alias ssh="TERM=xterm-256color ssh" source ~/.config/user-dirs.dirs ## Options setopt correct # Auto correct mistakes setopt extendedglob # Extended globbing. Allows using regular expressions with * setopt nocaseglob # Case insensitive globbing -setopt rcexpandparam # Array expension with parameters +setopt rcexpandparam # Array expansion with parameters setopt nocheckjobs # Don't warn about running processes when exiting setopt numericglobsort # Sort filenames numerically when it makes sense setopt nobeep # No beep diff --git a/.config/zsh/config.d/99-prepend-home-bin-path b/.config/zsh/config.d/99-prepend-home-bin-path new file mode 100644 index 0000000..f86b0f2 --- /dev/null +++ b/.config/zsh/config.d/99-prepend-home-bin-path @@ -0,0 +1,4 @@ +# vim:set ft=zsh: +if [[ -d "$HOME/bin" ]]; then + export PATH=$HOME/bin:${PATH} +fi