chore (zshrc): move exports to a more fitting spot in the config
This commit is contained in:
parent
8dd42a8c0d
commit
a91ffe96ef
16
zshrc
16
zshrc
@ -3,6 +3,14 @@ if [[ ! -o interactive ]]; then
|
|||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# List of non-alphanumeric characters considered part of a word
|
||||||
|
export WORDCHARS='*?_-.[]~=&;!#$%^(){}<>'
|
||||||
|
|
||||||
|
# Do not create a history file for less
|
||||||
|
export LESSHISTFILE=/dev/null
|
||||||
|
|
||||||
|
# Disable features like shell or pipe commands and more in less
|
||||||
|
export LESSSECURE=1
|
||||||
# completion system
|
# completion system
|
||||||
autoload -U compinit; compinit
|
autoload -U compinit; compinit
|
||||||
|
|
||||||
@ -76,11 +84,3 @@ precmd() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# List of non-alphanumeric characters considered part of a word
|
|
||||||
export WORDCHARS='*?_-.[]~=&;!#$%^(){}<>'
|
|
||||||
|
|
||||||
# Do not create a history file for less
|
|
||||||
export LESSHISTFILE=/dev/null
|
|
||||||
|
|
||||||
# Disable features like shell or pipe commands and more in less
|
|
||||||
export LESSSECURE=1
|
|
||||||
|
Loading…
Reference in New Issue
Block a user