mirror of
https://codeberg.org/Mo8it/dotfiles.git
synced 2024-12-02 23:33:05 +00:00
Replace exa with lsd
This commit is contained in:
parent
91888a1cdb
commit
5864f43ea2
2 changed files with 23 additions and 1 deletions
|
@ -34,7 +34,7 @@ if status is-interactive
|
|||
|
||||
# Aliases
|
||||
alias cd "z"
|
||||
alias ls "exa --icons --group-directories-first --time-style long-iso --no-filesize --git"
|
||||
alias ls "lsd"
|
||||
alias ll "ls -l"
|
||||
alias cat "bat"
|
||||
alias gu "gitui"
|
||||
|
|
22
.config/lsd/config.yaml
Normal file
22
.config/lsd/config.yaml
Normal file
|
@ -0,0 +1,22 @@
|
|||
# This specifies the columns and their order when using the long and the tree
|
||||
# layout.
|
||||
# Possible values: permission, user, group, context, size, date, name, inode, links, git
|
||||
blocks:
|
||||
- permission
|
||||
- user
|
||||
- group
|
||||
- size
|
||||
- date
|
||||
- git
|
||||
- name
|
||||
|
||||
# This specifies the date format for the date column. The freeform format
|
||||
# accepts a strftime like string.
|
||||
# Possible values: date, relative, '+<date_format>'
|
||||
# `date_format` will be a `strftime` formatted value. e.g. `date: '+%d %b %y %X'` will give you a date like this: 17 Jun 21 20:14:55
|
||||
date: +%d-%m-%y %H:%M:%S
|
||||
|
||||
sorting:
|
||||
# Whether to group directories together and where.
|
||||
# Possible values: first, last, none
|
||||
dir-grouping: first
|
Loading…
Reference in a new issue