summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--zshrc2
1 files changed, 2 insertions, 0 deletions
diff --git a/zshrc b/zshrc
index ff5be76..7a9eafb 100644
--- a/zshrc
+++ b/zshrc
@@ -215,6 +215,8 @@ bindkey "^[#" insert-comment
if [ "$SYSTEM" = "Linux" ] ; then
eval `dircolors`
LS_COLORS="$LS_COLORS""*.divx=01;35:*.pdf=01;35:*.ps=01;35:*.eps=01;35"
+ # ls in buster (Debian 10) and later by default quotes its filenames if they contain spaces or other weird things. Disable.
+ export QUOTING_STYLE=literal
alias ls='ls --color=auto -F'
alias grep='grep --color'