]> git.donarmstrong.com Git - zsh.git/blob - .zsh/zshrc/00_autoload
add ~/.local/bin to PATH
[zsh.git] / .zsh / zshrc / 00_autoload
1 # -*- mode: sh -*-
2 # zshrc/00_autoload
3 #
4 # Autoload available functions
5 #
6 # Copyright © 1994–2008 martin f. krafft <madduck@madduck.net>
7 # Released under the terms of the Artistic Licence 2.0
8 #
9 # Source repository: git://git.madduck.net/etc/zsh.git
10 #
11
12 # autoload all executable files in $fpath
13 autoload -U $^fpath/*(.xN:t)
14
15 # smart xargs replacement
16 autoload -U zargs
17
18 # programmable moving, copying, and linking
19 autoload -U zmv
20
21 # make color arrays available
22 autoload -U colors ; colors
23
24 # use shell builtins for standard file operations
25 # disabled due to #479764
26 #zmodload zsh/files
27
28 # allow zwc file recompiling
29 autoload -U zrecompile
30
31 # vim:ft=zsh