dotfiles icon indicating copy to clipboard operation
dotfiles copied to clipboard

included command in `.zshrc` that eliminates duplicates in `$path`

Open SebiBasti opened this issue 1 year ago • 0 comments

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

SebiBasti avatar May 29 '23 13:05 SebiBasti