diff --git a/zshrc b/zshrc index 68ac653..1cb30b4 100644 --- a/zshrc +++ b/zshrc @@ -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