blob: 1da6cde0cdac5100a85ece496d75ee67620726e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# zshrc/00_autoload
#
# Autoload functions
#
# 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
# programmable rename
autoload -U zmv
# make color arrays available
autoload -U colors ; colors 2>/dev/null
# vim:ft=zsh
|