From a91ffe96efb3dada01afa5789e5665f31fbf24df Mon Sep 17 00:00:00 2001 From: eeemsi Date: Sat, 11 Feb 2023 09:38:02 +0100 Subject: [PATCH] chore (zshrc): move exports to a more fitting spot in the config --- zshrc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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