From 9037fda36d935830d0b2ec2437978ea7fde23c97 Mon Sep 17 00:00:00 2001 From: Indrajit Raychaudhuri Date: Tue, 25 May 2021 15:18:54 -0500 Subject: [PATCH] completion: Avoid double-quoting LS_COLORS for completion Double-quoting `LS_COLORS` prevents it from loading in environment, which isn't what we want. --- modules/completion/init.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/completion/init.zsh b/modules/completion/init.zsh index 0500ef8..0fdf314 100644 --- a/modules/completion/init.zsh +++ b/modules/completion/init.zsh @@ -40,7 +40,7 @@ unsetopt FLOW_CONTROL # Disable start/stop characters in shell editor. # # Standard style used by default for 'list-colors' -LS_COLORS="${LS_COLORS:-'di=34:ln=35:so=32:pi=33:ex=31:bd=36;01:cd=33;01:su=31;40;07:sg=36;40;07:tw=32;40;07:ow=33;40;07:'}" +LS_COLORS=${LS_COLORS:-'di=34:ln=35:so=32:pi=33:ex=31:bd=36;01:cd=33;01:su=31;40;07:sg=36;40;07:tw=32;40;07:ow=33;40;07:'} # # Initialization