completion: Avoid double-quoting LS_COLORS for completion

Double-quoting `LS_COLORS` prevents it from loading in environment,
which isn't what we want.
main
Indrajit Raychaudhuri 3 years ago committed by Indrajit Raychaudhuri
parent 53033bc5d9
commit 9037fda36d

@ -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

Loading…
Cancel
Save