]> arthur.barton.de Git - ax-zsh.git/blob - plugins/zsh-navigation-tools/zsh-navigation-tools.zshrc
Add "zsh-navigation-tools" plugin
[ax-zsh.git] / plugins / zsh-navigation-tools / zsh-navigation-tools.zshrc
1 # AX-ZSH: Alex' Modular ZSH Configuration
2 # zsh-navigation-tools.zshrc: Initialize "ZSH Navigation Tools"
3
4 for script (
5         "/usr/share/zsh-navigation-tools/zsh-navigation-tools.plugin.zsh"
6         "/usr/local/share/zsh-navigation-tools/zsh-navigation-tools.plugin.zsh"
7 ); do
8         if [[ -r "$script" ]]; then
9                 source "$script"
10                 unset script
11                 return
12         fi
13 done
14 unset script