summaryrefslogtreecommitdiff
path: root/.zsh/zshenv/01_fpath
blob: 6c86623aa22e4e966922f61e308b48746ad15436 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# zshenv/01_fpath
#
# Add local functions directory to $fpath
#
# Copyright © 2010 Tobias Klauser <tklauser@distanz.ch>
# Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
# 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