blob: 3f2c31238ce001acc8e1d57d77f9c57e826f0a5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# zshrc/00_autoload
#
# Autoload available functions
#
# Copyright © 2011 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
#
# autoload all executable files in $fpath
autoload -U $^fpath/*(.xN:t)
# smart xargs replacement
autoload -U zargs
# programmable moving, copying, and linking
autoload -U zmv
# allow zwc file recompiling
autoload -U zrecompile
# vim:ft=zsh
|