chore (zshrc): move exports to a more fitting spot in the config

This commit is contained in:
eeemsi 2023-02-11 09:38:02 +01:00
parent 8dd42a8c0d
commit a91ffe96ef
1 changed files with 8 additions and 8 deletions

16
zshrc
View File

@ -3,6 +3,14 @@ if [[ ! -o interactive ]]; then
return
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
autoload -U compinit; compinit
@ -76,11 +84,3 @@ precmd() {
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