mirror of
https://github.com/NaomiAmethyst/dots.git
synced 2025-08-05 16:48:38 +00:00
make the zshrc play nice with really old zsh (at least 4.0.2 tested)
This commit is contained in:
parent
c2754243fa
commit
138fcb2f54
1 changed files with 5 additions and 5 deletions
10
zshrc
10
zshrc
|
@ -3,17 +3,17 @@
|
||||||
# Trivial modifications: David Majnemer
|
# Trivial modifications: David Majnemer
|
||||||
# vim:set nowrap:
|
# vim:set nowrap:
|
||||||
|
|
||||||
autoload -Uz compinit; compinit -d "${HOME}/.zsh/.zcompdump"
|
autoload -U compinit; compinit -d "${HOME}/.zsh/.zcompdump"
|
||||||
|
|
||||||
autoload -Uz age
|
autoload -U age
|
||||||
autoload -Uz zmv
|
autoload -U zmv
|
||||||
|
|
||||||
if [[ ${ZSH_VERSION//.} -gt 420 ]] ; then
|
if [[ ${ZSH_VERSION//.} -gt 420 ]] ; then
|
||||||
autoload -Uz url-quote-magic
|
autoload -U url-quote-magic
|
||||||
zle -N self-insert url-quote-magic
|
zle -N self-insert url-quote-magic
|
||||||
fi
|
fi
|
||||||
|
|
||||||
autoload -Uz edit-command-line
|
autoload -U edit-command-line
|
||||||
zle -N edit-command-line
|
zle -N edit-command-line
|
||||||
|
|
||||||
# disable core dumps
|
# disable core dumps
|
||||||
|
|
Loading…
Add table
Reference in a new issue