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
Over time the
$PATHvariable can get quite bloated and have many duplicates inside.typeset -U pathThis takes care of this and checks
pathto only include unique values e.g. it deletes all duplicates.https://zsh.sourceforge.io/Guide/zshguide02.html#l24