[zsh] Update shell init; use ZSH autoloaded functions instead of a bunch of files

This commit is contained in:
Eryn Wells 2021-12-31 10:27:27 -08:00
parent 2b584f97cf
commit b09d523218
13 changed files with 208 additions and 138 deletions

25
zsh/func/init_path Normal file
View file

@ -0,0 +1,25 @@
#!/usr/bin/env zsh
# Initialize the path to a standard default
# Eryn Wells <eryn@erynwells.me>
autoload prepend_to_path
autoload append_to_path
function init_path
{
export path=()
append_to_path "/usr/local/bin"
append_to_path "/usr/bin"
append_to_path "/bin"
append_to_path "/usr/local/sbin"
append_to_path "/usr/sbin"
append_to_path "/sbin"
prepend_to_path "/usr/X11/bin"
prepend_to_path "/opt/local/bin"
prepend_to_path "$HOME/.local/bin"
prepend_to_path "$HOME/.gem/ruby/2.2.0/bin"
prepend_to_path "$HOME/.cargo/bin"
prepend_to_path "$HOME/bin"
}
init_path