dotfiles
dotfiles copied to clipboard
included command in `.zshrc` that eliminates duplicates in `$path`
This is related to https://github.com/lewagon/dotfiles/issues/140
Over time the $PATH variable can get quite bloated and have many duplicates inside.
typeset -U path
This takes care of this and checks $path
to only include unique values e.g. it deletes all duplicates.
https://zsh.sourceforge.io/Guide/zshguide02.html#l24