diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2013-09-10 11:24:31 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2013-09-10 11:24:32 +0200 |
commit | 55dada5173b913daae8566ef7ec9b5ad71d33b0a (patch) | |
tree | c62e04b8b8a24c5859bffcdf7015d3ca3b051c18 /.zsh | |
parent | e8e16dc19a11b0c96080ae31a5a34d1e741644cf (diff) | |
download | dotfiles-55dada5173b913daae8566ef7ec9b5ad71d33b0a.tar.gz dotfiles-55dada5173b913daae8566ef7ec9b5ad71d33b0a.tar.bz2 dotfiles-55dada5173b913daae8566ef7ec9b5ad71d33b0a.zip |
Node/NPM preparation
Diffstat (limited to '')
-rw-r--r-- | .zshenv | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -5,7 +5,15 @@ fpath=(~/.zsh/functions $fpath) # load all things in there autoload ${fpath[1]}/*(:t) -[[ -d ~/bin ]] && path=(~/bin $path) +path=( + # general binaries + ~/bin + # node stuff + ~/.node/bin + # isabelle + ~/isabelle/Isabelle/bin + # rest + $path) # other variables _kw="~amd64" |