diff options
author | tsxv478 <atvx717@infraredcombat.xyz> | 2024-02-19 12:31:55 +0300 |
---|---|---|
committer | tsxv478 <atvx717@infraredcombat.xyz> | 2024-02-19 12:31:55 +0300 |
commit | 46f7939dc9e4b894bf45b45d79a9f28d7c8e83e7 (patch) | |
tree | 044ae480b99653031d5e1d82b895df68aa418a3f /zshrc | |
parent | 9290bfbc242a09dc4fd0415ffc01a881d5de92d9 (diff) |
remove ls -F option
Diffstat (limited to 'zshrc')
-rw-r--r-- | zshrc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -15,9 +15,9 @@ zmodload zsh/complist _comp_options+=(globdots) alias \ - ls='ls -Fv --color=auto --group-directories-first' \ - ll='ls -lhvF --color=auto --group-directories-first' \ - la='ls -lhvAF --color=auto --group-directories-first' \ + ls='ls -v --color=auto --group-directories-first' \ + ll='ls -lhv --color=auto --group-directories-first' \ + la='ls -lhvA --color=auto --group-directories-first' \ grep='grep --color=auto' \ diff='diff --color=auto' \ tree='tree -C' \ |