zsh-setup: applied patch from Frank Terbeck for improved
[grml-etc-core.git] / etc / skel / .zshrc.grmlsmall
1 # Filename:      .zshrc.grmlsmall
2 # Purpose:       remove items from grml's zsh configuration that
3 #                depend on software that is not in grmlsmall.
4 # Authors:       Frank Terbeck <ft@bewatermyfriend.de>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2.
7 # Latest change: Mit Nov 15 21:31:18 CET 2006 [ft]
8 ################################################################################
9
10 # vim is not in grmlsmall
11   [[ $EDITOR == vim ]] && EDITOR='vi'
12   unset abk[V]
13   unalias    'V'      &> /dev/null
14   unfunction vman     &> /dev/null
15   unfunction vimpm    &> /dev/null
16   unfunction vimhelp  &> /dev/null
17   unfunction viless   &> /dev/null
18   unfunction 2html    &> /dev/null
19
20 # manpages are not in grmlsmall
21   unfunction manzsh   &> /dev/null
22   unalias    man2     &> /dev/null
23   unalias    man      &> /dev/null
24   unfunction man2     &> /dev/null
25
26 ## END OF FILE #################################################################