summaryrefslogtreecommitdiff
path: root/zshrc
diff options
context:
space:
mode:
authorPeter Palfrader <peter@palfrader.org>2019-04-17 17:00:52 +0200
committerPeter Palfrader <peter@palfrader.org>2019-04-17 17:00:52 +0200
commitc7b45b9ea296eda1126924b0787742cd0f39c93b (patch)
tree4c35feb3a5f4cdfd1ea445a46121ed38dad20fba /zshrc
parent71474ab0dc1cbf8c8206ba7e93494ac20b989338 (diff)
get back sane ls behaviour
Diffstat (limited to 'zshrc')
-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'