You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
414 B
EmacsLisp
11 lines
414 B
EmacsLisp
1 year ago
|
(use-package ibuffer
|
||
|
:custom
|
||
|
(ibuffer-display-summary nil)
|
||
|
(ibuffer-expert t)
|
||
|
(ibuffer-formats '((mark modified read-only locked
|
||
|
" " (name 32 32 :left :elide)
|
||
|
" " (size 5 5 :right)
|
||
|
" " (mode 16 16 :left :elide)
|
||
|
" " filename-and-process)
|
||
|
(mark " " (name 16 -1) " " filename))))
|