summaryrefslogtreecommitdiff
path: root/.zsh/zshenv/01_fpath
blob: 88fcea3291a85e36a0e52f2afa7b5cb24dab7cc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# zshenv/01_fpath
#
# Add local functions directory to $fpath
#
# Copyright © 2010 Tobias Klauser <tklauser@distanz.ch>
# Released under the terms of the Artistic Licence 2.0
#
# Source repository: git://git.distanz.ch/dotfiles/zsh.git

fpath=($ZDOTDIR/func $fpath)

# vim:ft=zsh