summaryrefslogtreecommitdiff
path: root/.zsh/zshenv/01_fpath
blob: 10275bca1c6bff80f004f20d19c87e45ee149d96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# zshenv/01_fpath
#
# Add local functions directory to $fpath
#
# Copyright © 2010-2013 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)

# add custom completions
fpath=($ZDOTDIR/completion $fpath)

# vim:ft=zsh