-
Notifications
You must be signed in to change notification settings - Fork 13
/
all-the-icons-ivy-rich.el
2090 lines (1872 loc) · 86.7 KB
/
all-the-icons-ivy-rich.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;;; all-the-icons-ivy-rich.el --- Better experience with icons for ivy -*- lexical-binding: t; -*-
;; Copyright (C) 2020 Vincent Zhang
;; Author: Vincent Zhang <seagle0128@gmail.com>
;; Homepage: https://github.com/seagle0128/all-the-icons-ivy-rich
;; Version: 1.9.0
;; Package-Requires: ((emacs "25.1") (ivy-rich "0.1.0") (all-the-icons "2.2.0"))
;; Keywords: convenience, icons, ivy
;; This file is not part of GNU Emacs.
;;
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 3, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth
;; Floor, Boston, MA 02110-1301, USA.
;;
;;; Commentary:
;; Better experience with icons for ivy.
;;
;; Install:
;; From melpa, `M-x package-install RET all-the-icons-ivy-rich RET`.
;; (all-the-icons-ivy-rich-mode 1)
;; or
;; (use-package all-the-icons-ivy-rich-mode
;; :ensure t
;; :init (all-the-icons-ivy-rich-mode 1))
;;; Code:
(eval-when-compile
(require 'subr-x)
(require 'package)
(require 'bookmark)
(require 'project))
(require 'ivy-rich)
(require 'all-the-icons)
;; Suppress warnings
(defvar counsel--fzf-dir)
(defvar ivy--directory)
(defvar ivy-last)
(defvar ivy-posframe-buffer)
(declare-function bookmark-get-front-context-string "bookmark")
(declare-function counsel-world-clock--local-time "ext:counsel-world-clock")
(declare-function find-library-name "find-func")
(declare-function ivy-posframe--display "ext:ivy-posframe")
(declare-function package--from-builtin "package")
(declare-function package-desc-status "package")
(declare-function projectile-project-root "ext:projectile")
;; Compatibility
(unless (fboundp #'file-attribute-user-id)
(defsubst file-attribute-user-id (attributes)
(nth 2 attributes)))
(unless (fboundp #'file-attribute-group-id)
(defsubst file-attribute-group-id (attributes)
(nth 3 attributes)))
(unless (fboundp #'file-attribute-modification-time)
(defsubst file-attribute-modification-time (attributes)
(nth 5 attributes)))
(unless (fboundp #'file-attribute-size)
(defsubst file-attribute-size (attributes)
(nth 7 attributes)))
(unless (fboundp #'file-attribute-modes)
(defsubst file-attribute-modes (attributes)
(nth 8 attributes)))
;;
;; Faces
;;
(defgroup all-the-icons-ivy-rich nil
"Better experience using icons in ivy."
:group 'all-the-icons
:group 'ivy-rich
:link '(url-link :tag "Homepage" "https://github.com/seagle0128/all-the-icons-ivy-rich"))
(defface all-the-icons-ivy-rich-on-face
'((t :inherit success))
"Face used to signal enabled modes.")
(defface all-the-icons-ivy-rich-off-face
'((t :inherit shadow))
"Face used to signal disabled modes.")
(defface all-the-icons-ivy-rich-error-face
'((t :inherit error))
"Face used to signal disabled modes.")
(defface all-the-icons-ivy-rich-warn-face
'((t :inherit warning))
"Face used to signal disabled modes.")
(defface all-the-icons-ivy-rich-icon-face
'((t (:inherit default)))
"Face used for the icons while `all-the-icons-ivy-rich-color-icon' is nil."
:group 'all-the-icons-ivy-rich)
(defface all-the-icons-ivy-rich-dir-face
'((t (:inherit font-lock-doc-face)))
"Face used for the directory icon."
:group 'all-the-icons-ivy-rich)
(defface all-the-icons-ivy-rich-doc-face
'((t (:inherit ivy-completions-annotations)))
"Face used for documentation string."
:group 'all-the-icons-ivy-rich)
(defface all-the-icons-ivy-rich-size-face
'((t (:inherit font-lock-constant-face)))
"Face used for buffer size."
:group 'all-the-icons-ivy-rich)
(defface all-the-icons-ivy-rich-time-face
'((t (:inherit shadow)))
"Face used for time."
:group 'all-the-icons-ivy-rich)
(defface all-the-icons-ivy-rich-bookmark-face
'((t (:inherit all-the-icons-ivy-rich-doc-face)))
"Face used for time."
:group 'all-the-icons-ivy-rich)
(defface all-the-icons-ivy-rich-version-face
'((t (:inherit font-lock-constant-face)))
"Face used for package version."
:group 'all-the-icons-ivy-rich)
(defface all-the-icons-ivy-rich-archive-face
'((t (:inherit font-lock-doc-face)))
"Face used for package archive."
:group 'all-the-icons-ivy-rich)
(defface all-the-icons-ivy-rich-package-status-avaible-face
'((t (:inherit all-the-icons-ivy-rich-on-face)))
"Face used for package status."
:group 'all-the-icons-ivy-rich)
(defface all-the-icons-ivy-rich-package-status-new-face
'((t (:inherit (all-the-icons-ivy-rich-on-face bold))))
"Face used for package status."
:group 'all-the-icons-ivy-rich)
(defface all-the-icons-ivy-rich-package-status-held-face
'((t (:inherit font-lock-constant-face)))
"Face used for package status."
:group 'all-the-icons-ivy-rich)
(defface all-the-icons-ivy-rich-package-status-installed-face
'((t (:inherit all-the-icons-ivy-rich-off-face)))
"Face used for package status."
:group 'all-the-icons-ivy-rich)
(defface all-the-icons-ivy-rich-package-status-warn-face
'((t (:inherit all-the-icons-ivy-rich-warn-face)))
"Face used for package status."
:group 'all-the-icons-ivy-rich)
(defface all-the-icons-ivy-rich-pacage-desc-face
'((t (:inherit all-the-icons-ivy-rich-doc-face)))
"Face used for package description."
:group 'all-the-icons-ivy-rich)
(defface all-the-icons-ivy-rich-path-face
'((t (:inherit all-the-icons-ivy-rich-doc-face)))
"Face used for file path."
:group 'all-the-icons-ivy-rich)
(defface all-the-icons-ivy-rich-indicator-face
'((t (:inherit all-the-icons-ivy-rich-error-face)))
"Face used for file indicators."
:group 'all-the-icons-ivy-rich)
(defface all-the-icons-ivy-rich-major-mode-face
'((t (:inherit font-lock-keyword-face)))
"Face used for buffer major mode."
:group 'all-the-icons-ivy-rich)
(defface all-the-icons-ivy-rich-project-face
'((t (:inherit font-lock-string-face)))
"Face used for project."
:group 'all-the-icons-ivy-rich)
(defface all-the-icons-ivy-rich-persp-face
'((t (:inherit font-lock-string-face)))
"Face used for persp."
:group 'all-the-icons-ivy-rich)
(defface all-the-icons-ivy-rich-file-name-face
'((t :inherit all-the-icons-ivy-rich-doc-face))
"Face used for highlight file names.")
(defface all-the-icons-ivy-rich-file-priv-no
'((t :inherit shadow))
"Face used to highlight the no file privilege attribute.")
(defface all-the-icons-ivy-rich-file-priv-dir
'((t :inherit font-lock-keyword-face))
"Face used to highlight the dir file privilege attribute.")
(defface all-the-icons-ivy-rich-file-priv-link
'((t :inherit font-lock-keyword-face))
"Face used to highlight the link file privilege attribute.")
(defface all-the-icons-ivy-rich-file-priv-read
'((t :inherit font-lock-type-face))
"Face used to highlight the read file privilege attribute.")
(defface all-the-icons-ivy-rich-file-priv-write
'((t :inherit font-lock-builtin-face))
"Face used to highlight the write file privilege attribute.")
(defface all-the-icons-ivy-rich-file-priv-exec
'((t :inherit font-lock-function-name-face))
"Face used to highlight the exec file privilege attribute.")
(defface all-the-icons-ivy-rich-file-priv-other
'((t :inherit font-lock-constant-face))
"Face used to highlight some other file privilege attribute.")
(defface all-the-icons-ivy-rich-file-priv-rare
'((t :inherit font-lock-variable-name-face))
"Face used to highlight a rare file privilege attribute.")
(defface all-the-icons-ivy-rich-file-owner-face
'((t :inherit font-lock-keyword-face))
"Face used for highlight file owners.")
(defface all-the-icons-ivy-rich-process-id-face
'((t :inherit default))
"Face used for process id.")
(defface all-the-icons-ivy-rich-process-status-face
'((t :inherit success))
"Face used for process status.")
(defface all-the-icons-ivy-rich-process-status-alt-face
'((t :inherit all-the-icons-ivy-rich-error-face))
"Face used for process status: stop, exit, closed and failed.")
(defface all-the-icons-ivy-rich-process-buffer-face
'((t :inherit font-lock-keyword-face))
"Face used for process buffer label.")
(defface all-the-icons-ivy-rich-process-tty-face
'((t :inherit font-lock-doc-face))
"Face used for process tty.")
(defface all-the-icons-ivy-rich-process-thread-face
'((t :inherit font-lock-doc-face))
"Face used for process thread.")
(defface all-the-icons-ivy-rich-process-command-face
'((t :inherit all-the-icons-ivy-rich-doc-face))
"Face used for process command.")
(defface all-the-icons-ivy-rich-type-face
'((t :inherit font-lock-keyword-face))
"Face used for type.")
(defface all-the-icons-ivy-rich-value-face
'((t :inherit font-lock-keyword-face))
"Face used for variable value.")
(defface all-the-icons-ivy-rich-true-face
'((t :inherit font-lock-builtin-face))
"Face used to highlight true variable values.")
(defface all-the-icons-ivy-rich-null-face
'((t :inherit font-lock-comment-face))
"Face used to highlight null or unbound variable values.")
(defface all-the-icons-ivy-rich-list-face
'((t :inherit font-lock-constant-face))
"Face used to highlight list expressions.")
(defface all-the-icons-ivy-rich-number-face
'((t :inherit font-lock-constant-face))
"Face used to highlight numeric values.")
(defface all-the-icons-ivy-rich-string-face
'((t :inherit font-lock-string-face))
"Face used to highlight string values.")
(defface all-the-icons-ivy-rich-function-face
'((t :inherit font-lock-function-name-face))
"Face used to highlight function symbols.")
(defface all-the-icons-ivy-rich-symbol-face
'((t :inherit font-lock-type-face))
"Face used to highlight general symbols.")
(defface all-the-icons-ivy-rich-imenu-type-face
'((t (:inherit all-the-icons-ivy-rich-type-face :height 0.9)))
"Face used for imenu type."
:group 'all-the-icons-ivy-rich)
(defface all-the-icons-ivy-rich-imenu-doc-face
'((t (:inherit all-the-icons-ivy-rich-doc-face :height 0.9)))
"Face used for imenu documentation."
:group 'all-the-icons-ivy-rich)
;;
;; Customization
;;
(defcustom all-the-icons-ivy-rich-icon t
"Whether display the icons."
:group 'all-the-icons-ivy-rich
:type 'boolean)
(defcustom all-the-icons-ivy-rich-color-icon t
"Whether display the colorful icons.
It respects `all-the-icons-color-icons'."
:group 'all-the-icons-ivy-rich
:type 'boolean)
(defcustom all-the-icons-ivy-rich-icon-size 1.0
"The default icon size in ivy."
:group 'all-the-icons-ivy-rich
:type 'float)
(defcustom all-the-icons-ivy-rich-project t
"Whether support project root."
:group 'all-the-icons-ivy-rich
:type 'boolean)
(defcustom all-the-icons-ivy-rich-field-width 80
"Maximum truncation width of annotation fields.
This value is adjusted depending on the `window-width'."
:group 'all-the-icons-ivy-rich
:type 'integer)
(defcustom all-the-icons-ivy-rich-display-transformers-list
'(ivy-switch-buffer
(:columns
((all-the-icons-ivy-rich-buffer-icon)
(ivy-switch-buffer-transformer (:width 0.3))
(ivy-rich-switch-buffer-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(ivy-rich-switch-buffer-indicators (:width 4 :face all-the-icons-ivy-rich-indicator-face :align right))
(all-the-icons-ivy-rich-switch-buffer-major-mode (:width 18 :face all-the-icons-ivy-rich-major-mode-face))
(ivy-rich-switch-buffer-project (:width 0.12 :face all-the-icons-ivy-rich-project-face))
(ivy-rich-switch-buffer-path (:width (lambda (x) (ivy-rich-switch-buffer-shorten-path x (ivy-rich-minibuffer-width 0.3))) :face all-the-icons-ivy-rich-path-face)))
:predicate
(lambda (cand) (get-buffer cand))
:delimiter "\t")
ivy-switch-buffer-other-window
(:columns
((all-the-icons-ivy-rich-buffer-icon)
(ivy-switch-buffer-transformer (:width 0.3))
(ivy-rich-switch-buffer-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(ivy-rich-switch-buffer-indicators (:width 4 :face all-the-icons-ivy-rich-indicator-face :align right))
(all-the-icons-ivy-rich-switch-buffer-major-mode (:width 18 :face all-the-icons-ivy-rich-major-mode-face))
(ivy-rich-switch-buffer-project (:width 0.12 :face all-the-icons-ivy-rich-project-face))
(ivy-rich-switch-buffer-path (:width (lambda (x) (ivy-rich-switch-buffer-shorten-path x (ivy-rich-minibuffer-width 0.3))) :face all-the-icons-ivy-rich-path-face)))
:predicate
(lambda (cand) (get-buffer cand))
:delimiter "\t")
;; counsel
counsel-switch-buffer
(:columns
((all-the-icons-ivy-rich-buffer-icon)
(ivy-switch-buffer-transformer (:width 0.3))
(ivy-rich-switch-buffer-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(ivy-rich-switch-buffer-indicators (:width 4 :face all-the-icons-ivy-rich-indicator-face :align right))
(all-the-icons-ivy-rich-switch-buffer-major-mode (:width 18 :face all-the-icons-ivy-rich-major-mode-face))
(ivy-rich-switch-buffer-project (:width 0.12 :face all-the-icons-ivy-rich-project-face))
(ivy-rich-switch-buffer-path (:width (lambda (x) (ivy-rich-switch-buffer-shorten-path x (ivy-rich-minibuffer-width 0.3))) :face all-the-icons-ivy-rich-path-face)))
:predicate
(lambda (cand) (get-buffer cand))
:delimiter "\t")
counsel-switch-buffer-other-window
(:columns
((all-the-icons-ivy-rich-buffer-icon)
(ivy-switch-buffer-transformer (:width 0.3))
(ivy-rich-switch-buffer-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(ivy-rich-switch-buffer-indicators (:width 4 :face all-the-icons-ivy-rich-indicator-face :align right))
(all-the-icons-ivy-rich-switch-buffer-major-mode (:width 18 :face all-the-icons-ivy-rich-major-mode-face))
(ivy-rich-switch-buffer-project (:width 0.12 :face all-the-icons-ivy-rich-project-face))
(ivy-rich-switch-buffer-path (:width (lambda (x) (ivy-rich-switch-buffer-shorten-path x (ivy-rich-minibuffer-width 0.3))) :face all-the-icons-ivy-rich-path-face)))
:predicate
(lambda (cand) (get-buffer cand))
:delimiter "\t")
counsel-M-x
(:columns
((all-the-icons-ivy-rich-function-icon)
(counsel-M-x-transformer (:width 0.3))
(ivy-rich-counsel-function-docstring (:face all-the-icons-ivy-rich-doc-face))))
counsel-describe-function
(:columns
((all-the-icons-ivy-rich-function-icon)
(counsel-describe-function-transformer (:width 0.3))
(all-the-icons-ivy-rich-symbol-class (:width 8 :face all-the-icons-ivy-rich-type-face))
(all-the-icons-ivy-rich-function-args (:width 0.12 :face all-the-icons-ivy-rich-value-face))
(ivy-rich-counsel-function-docstring (:face all-the-icons-ivy-rich-doc-face))))
counsel-describe-variable
(:columns
((all-the-icons-ivy-rich-variable-icon)
(counsel-describe-variable-transformer (:width 0.3))
(all-the-icons-ivy-rich-symbol-class (:width 8 :face all-the-icons-ivy-rich-type-face))
(all-the-icons-ivy-rich-variable-value (:width 0.12))
(ivy-rich-counsel-variable-docstring (:face all-the-icons-ivy-rich-doc-face))))
counsel-describe-symbol
(:columns
((all-the-icons-ivy-rich-symbol-icon)
(ivy-rich-candidate (:width 0.3))
(all-the-icons-ivy-rich-symbol-class (:width 8 :face all-the-icons-ivy-rich-type-face))
(all-the-icons-ivy-rich-symbol-docstring (:face all-the-icons-ivy-rich-doc-face)))
:delimiter "\t")
counsel-set-variable
(:columns
((all-the-icons-ivy-rich-variable-icon)
(counsel-describe-variable-transformer (:width 0.3))
(all-the-icons-ivy-rich-symbol-class (:width 8 :face all-the-icons-ivy-rich-type-face))
(all-the-icons-ivy-rich-variable-value (:width 0.12))
(ivy-rich-counsel-variable-docstring (:face all-the-icons-ivy-rich-doc-face))))
counsel-apropos
(:columns
((all-the-icons-ivy-rich-symbol-icon)
(ivy-rich-candidate (:width 0.3))
(all-the-icons-ivy-rich-symbol-class (:width 8 :face all-the-icons-ivy-rich-type-face))
(all-the-icons-ivy-rich-symbol-docstring (:face all-the-icons-ivy-rich-doc-face)))
:delimiter "\t")
counsel-info-lookup-symbol
(:columns
((all-the-icons-ivy-rich-symbol-icon)
(ivy-rich-candidate (:width 0.3))
(all-the-icons-ivy-rich-symbol-class (:width 8 :face all-the-icons-ivy-rich-type-face))
(all-the-icons-ivy-rich-symbol-docstring (:face all-the-icons-ivy-rich-doc-face)))
:delimiter "\t")
counsel-descbinds
(:columns
((all-the-icons-ivy-rich-keybinding-icon)
(ivy-rich-candidate (:width 0.3))
(all-the-icons-ivy-rich-keybinding-docstring (:face all-the-icons-ivy-rich-doc-face)))
:delimiter "\t")
counsel-find-file
(:columns
((all-the-icons-ivy-rich-file-icon)
(all-the-icons-ivy-rich-file-name (:width 0.4))
(all-the-icons-ivy-rich-file-id (:width 15 :face all-the-icons-ivy-rich-file-owner-face :align right))
(all-the-icons-ivy-rich-file-modes (:width 12))
(all-the-icons-ivy-rich-file-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(all-the-icons-ivy-rich-file-modification-time (:face all-the-icons-ivy-rich-time-face)))
:delimiter "\t")
counsel-file-jump
(:columns
((all-the-icons-ivy-rich-file-icon)
(all-the-icons-ivy-rich-file-name (:width 0.4))
(all-the-icons-ivy-rich-file-id (:width 15 :face all-the-icons-ivy-rich-file-owner-face :align right))
(all-the-icons-ivy-rich-file-modes (:width 12))
(all-the-icons-ivy-rich-file-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(all-the-icons-ivy-rich-file-modification-time (:face all-the-icons-ivy-rich-time-face)))
:delimiter "\t")
counsel-dired
(:columns
((all-the-icons-ivy-rich-file-icon)
(all-the-icons-ivy-rich-file-name (:width 0.4))
(all-the-icons-ivy-rich-file-id (:width 15 :face all-the-icons-ivy-rich-file-owner-face :align right))
(all-the-icons-ivy-rich-file-modes (:width 12))
(all-the-icons-ivy-rich-file-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(all-the-icons-ivy-rich-file-modification-time (:face all-the-icons-ivy-rich-time-face)))
:delimiter "\t")
counsel-dired-jump
(:columns
((all-the-icons-ivy-rich-file-icon)
(all-the-icons-ivy-rich-file-name (:width 0.4))
(all-the-icons-ivy-rich-file-id (:width 15 :face all-the-icons-ivy-rich-file-owner-face :align right))
(all-the-icons-ivy-rich-file-modes (:width 12))
(all-the-icons-ivy-rich-file-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(all-the-icons-ivy-rich-file-modification-time (:face all-the-icons-ivy-rich-time-face)))
:delimiter "\t")
counsel-fzf
(:columns
((all-the-icons-ivy-rich-file-icon)
(all-the-icons-ivy-rich-file-name (:width 0.4))
(all-the-icons-ivy-rich-file-id (:width 15 :face all-the-icons-ivy-rich-file-owner-face :align right))
(all-the-icons-ivy-rich-file-modes (:width 12))
(all-the-icons-ivy-rich-file-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(all-the-icons-ivy-rich-file-modification-time (:face all-the-icons-ivy-rich-time-face)))
:delimiter "\t")
counsel-git
(:columns
((all-the-icons-ivy-rich-file-icon)
(all-the-icons-ivy-rich-file-name (:width 0.4))
(all-the-icons-ivy-rich-file-id (:width 15 :face all-the-icons-ivy-rich-file-owner-face :align right))
(all-the-icons-ivy-rich-file-modes (:width 12))
(all-the-icons-ivy-rich-file-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(all-the-icons-ivy-rich-file-modification-time (:face all-the-icons-ivy-rich-time-face)))
:delimiter "\t")
counsel-recentf
(:columns
((all-the-icons-ivy-rich-file-icon)
(all-the-icons-ivy-rich-file-name (:width 0.5))
(all-the-icons-ivy-rich-file-id (:width 15 :face all-the-icons-ivy-rich-file-owner-face :align right))
(all-the-icons-ivy-rich-file-modes (:width 12))
(all-the-icons-ivy-rich-file-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(ivy-rich-file-last-modified-time (:face all-the-icons-ivy-rich-time-face)))
:delimiter "\t")
counsel-buffer-or-recentf
(:columns
((all-the-icons-ivy-rich-file-icon)
(counsel-buffer-or-recentf-transformer (:width 0.5))
(all-the-icons-ivy-rich-file-id (:width 15 :face all-the-icons-ivy-rich-file-owner-face :align right))
(all-the-icons-ivy-rich-file-modes (:width 12))
(all-the-icons-ivy-rich-file-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(ivy-rich-file-last-modified-time (:face all-the-icons-ivy-rich-time-face)))
:delimiter "\t")
counsel-bookmark
(:columns
((all-the-icons-ivy-rich-bookmark-icon)
(all-the-icons-ivy-rich-bookmark-name (:width 0.25))
(ivy-rich-bookmark-type (:width 10))
(all-the-icons-ivy-rich-bookmark-filename (:width 0.3 :face all-the-icons-ivy-rich-bookmark-face))
(all-the-icons-ivy-rich-bookmark-context (:face all-the-icons-ivy-rich-doc-face)))
:delimiter "\t")
counsel-bookmarked-directory
(:columns
((all-the-icons-ivy-rich-file-icon)
(ivy-rich-candidate))
:delimiter "\t")
counsel-package
(:columns
((all-the-icons-ivy-rich-package-icon)
(ivy-rich-candidate (:width 0.25))
(all-the-icons-ivy-rich-package-version (:width 16 :face all-the-icons-ivy-rich-version-face))
(all-the-icons-ivy-rich-package-status (:width 12))
(all-the-icons-ivy-rich-package-archive-summary (:width 7 :face all-the-icons-ivy-rich-archive-face))
(all-the-icons-ivy-rich-package-install-summary (:face all-the-icons-ivy-rich-pacage-desc-face)))
:delimiter "\t")
counsel-fonts
(:columns
((all-the-icons-ivy-rich-font-icon)
(ivy-rich-candidate))
:delimiter "\t")
counsel-major
(:columns
((all-the-icons-ivy-rich-mode-icon)
(counsel-describe-function-transformer (:width 0.3))
(ivy-rich-counsel-function-docstring (:face all-the-icons-ivy-rich-doc-face))))
counsel-minor
(:columns
((all-the-icons-ivy-rich-mode-icon)
(ivy-rich-candidate))
:delimiter "\t")
counsel-find-library
(:columns
((all-the-icons-ivy-rich-library-icon)
(all-the-icons-ivy-rich-library-transformer))
:delimiter "\t")
counsel-load-library
(:columns
((all-the-icons-ivy-rich-library-icon)
(all-the-icons-ivy-rich-library-transformer))
:delimiter "\t")
counsel-load-theme
(:columns
((all-the-icons-ivy-rich-theme-icon)
(ivy-rich-candidate))
:delimiter "\t")
counsel-world-clock
(:columns
((all-the-icons-ivy-rich-world-clock-icon)
(ivy-rich-candidate (:width 0.3))
(all-the-icons-ivy-rich-world-clock (:face all-the-icons-ivy-rich-time-face)))
:delimiter "\t")
counsel-tramp
(:columns
((all-the-icons-ivy-rich-tramp-icon)
(ivy-rich-candidate))
:delimiter "\t")
counsel-git-checkout
(:columns
((all-the-icons-ivy-rich-git-commit-icon)
(ivy-rich-candidate))
:delimiter "\t")
counsel-list-processes
(:columns
((all-the-icons-ivy-rich-process-icon)
(ivy-rich-candidate (:width 25))
(all-the-icons-ivy-rich-process-id (:width 7 :face all-the-icons-ivy-rich-process-id-face))
(all-the-icons-ivy-rich-process-status (:width 7))
(all-the-icons-ivy-rich-process-buffer-name (:width 25 :face all-the-icons-ivy-rich-process-buffer-face))
(all-the-icons-ivy-rich-process-tty-name (:width 12 :face all-the-icons-ivy-rich-process-tty-face))
(all-the-icons-ivy-rich-process-thread (:width 12 :face all-the-icons-ivy-rich-process-thread-face))
(all-the-icons-ivy-rich-process-command (:face all-the-icons-ivy-rich-process-command-face)))
:delimiter "\t")
counsel-projectile-switch-project
(:columns
((all-the-icons-ivy-rich-file-icon)
(all-the-icons-ivy-rich-project-name (:width 0.4))
(all-the-icons-ivy-rich-project-file-id (:width 15 :face all-the-icons-ivy-rich-file-owner-face :align right))
(all-the-icons-ivy-rich-project-file-modes (:width 12))
(all-the-icons-ivy-rich-project-file-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(all-the-icons-ivy-rich-project-file-modification-time (:face all-the-icons-ivy-rich-time-face)))
:delimiter "\t")
counsel-projectile-switch-to-buffer
(:columns
((counsel-projectile-switch-to-buffer-transformer))
:predicate
(lambda (cand) (get-buffer cand))
:delimiter "\t")
counsel-projectile-find-file
(:columns
((all-the-icons-ivy-rich-file-icon)
(counsel-projectile-find-file-transformer (:width 0.4))
(all-the-icons-ivy-rich-project-file-id (:width 15 :face all-the-icons-ivy-rich-file-owner-face :align right))
(all-the-icons-ivy-rich-project-file-modes (:width 12))
(all-the-icons-ivy-rich-project-file-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(all-the-icons-ivy-rich-project-file-modification-time (:face all-the-icons-ivy-rich-time-face)))
:delimiter "\t")
counsel-projectile-find-dir
(:columns
((all-the-icons-ivy-rich-file-icon)
(counsel-projectile-find-dir-transformer (:width 0.4))
(all-the-icons-ivy-rich-project-file-id (:width 15 :face all-the-icons-ivy-rich-file-owner-face :align right))
(all-the-icons-ivy-rich-project-file-modes (:width 12))
(all-the-icons-ivy-rich-project-file-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(all-the-icons-ivy-rich-project-file-modification-time (:face all-the-icons-ivy-rich-time-face)))
:delimiter "\t")
counsel-imenu
(:columns
((all-the-icons-ivy-rich-imenu-icon)
(ivy-rich-candidate)
(all-the-icons-ivy-rich-imenu-class (:face all-the-icons-ivy-rich-imenu-type-face))
(all-the-icons-ivy-rich-imenu-docstring (:face all-the-icons-ivy-rich-imenu-doc-face)))
:delimiter "\t")
counsel-company
(:columns
((all-the-icons-ivy-rich-company-icon)
(ivy-rich-candidate))
:delimiter "\t")
counsel-command-history
(:columns
((all-the-icons-ivy-rich-command-icon)
(ivy-rich-candidate))
:delimiter "\t")
counsel-minibuffer-history
(:columns
((all-the-icons-ivy-rich-history-icon)
(ivy-rich-candidate))
:delimiter "\t")
counsel-read-directory-name
(:columns
((all-the-icons-ivy-rich-dir-icon)
(all-the-icons-ivy-rich-project-name))
:delimiter "\t")
counsel-rpm
(:columns
((all-the-icons-ivy-rich-package-icon)
(ivy-rich-candidate))
:delimiter "\t")
counsel-dpkg
(:columns
((all-the-icons-ivy-rich-package-icon)
(ivy-rich-candidate))
:delimiter "\t")
counsel-ack
(:columns
((all-the-icons-ivy-rich-grep-file-icon)
(all-the-icons-ivy-rich-grep-transformer))
:delimiter "\t")
counsel-ag
(:columns
((all-the-icons-ivy-rich-grep-file-icon)
(all-the-icons-ivy-rich-grep-transformer))
:delimiter "\t")
counsel-pt
(:columns
((all-the-icons-ivy-rich-grep-file-icon)
(all-the-icons-ivy-rich-grep-transformer))
:delimiter "\t")
counsel-rg
(:columns
((all-the-icons-ivy-rich-grep-file-icon)
(all-the-icons-ivy-rich-grep-transformer))
:delimiter "\t")
;; Execute command
execute-extended-command
(:columns
((all-the-icons-ivy-rich-function-icon)
(counsel-M-x-transformer (:width 0.3))
(ivy-rich-counsel-function-docstring (:face all-the-icons-ivy-rich-doc-face))))
execute-extended-command-for-buffer
(:columns
((all-the-icons-ivy-rich-function-icon)
(counsel-M-x-transformer (:width 0.3))
(ivy-rich-counsel-function-docstring (:face all-the-icons-ivy-rich-doc-face))))
;; projectile
projectile-completing-read
(:columns
((all-the-icons-ivy-rich-file-icon)
(all-the-icons-ivy-rich-project-find-file-transformer (:width 0.4))
(all-the-icons-ivy-rich-project-file-id (:width 15 :face all-the-icons-ivy-rich-file-owner-face :align right))
(all-the-icons-ivy-rich-project-file-modes (:width 12))
(all-the-icons-ivy-rich-project-file-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(all-the-icons-ivy-rich-project-file-modification-time (:face all-the-icons-ivy-rich-time-face)))
:delimiter "\t")
;; project
project-execute-extended-command
(:columns
((all-the-icons-ivy-rich-function-icon)
(counsel-M-x-transformer (:width 0.3))
(ivy-rich-counsel-function-docstring (:face all-the-icons-ivy-rich-doc-face))))
project-switch-project
(:columns
((all-the-icons-ivy-rich-project-icon)
(all-the-icons-ivy-rich-project-name))
:delimiter "\t")
project-find-file
(:columns
((all-the-icons-ivy-rich-file-icon)
(all-the-icons-ivy-rich-project-find-file-transformer (:width 0.4))
(all-the-icons-ivy-rich-project-file-id (:width 15 :face all-the-icons-ivy-rich-file-owner-face :align right))
(all-the-icons-ivy-rich-project-file-modes (:width 12))
(all-the-icons-ivy-rich-project-file-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(all-the-icons-ivy-rich-project-file-modification-time (:face all-the-icons-ivy-rich-time-face)))
:delimiter "\t")
project-or-external-find-file
(:columns
((all-the-icons-ivy-rich-file-icon)
(all-the-icons-ivy-rich-project-find-file-transformer (:width 0.4))
(all-the-icons-ivy-rich-project-file-id (:width 15 :face all-the-icons-ivy-rich-file-owner-face :align right))
(all-the-icons-ivy-rich-project-file-modes (:width 12))
(all-the-icons-ivy-rich-project-file-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(all-the-icons-ivy-rich-project-file-modification-time (:face all-the-icons-ivy-rich-time-face)))
:delimiter "\t")
project-dired
(:columns
((all-the-icons-ivy-rich-file-icon)
(ivy-rich-candidate (:width 0.4))
(all-the-icons-ivy-rich-project-file-id (:width 15 :face all-the-icons-ivy-rich-file-owner-face :align right))
(all-the-icons-ivy-rich-project-file-modes (:width 12))
(all-the-icons-ivy-rich-project-file-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(all-the-icons-ivy-rich-project-file-modification-time (:face all-the-icons-ivy-rich-time-face)))
:delimiter "\t")
project-find-regexp
(:columns
((all-the-icons-ivy-rich-grep-file-icon)
(all-the-icons-ivy-rich-grep-transformer))
:delimiter "\t")
;; package
package-install
(:columns
((all-the-icons-ivy-rich-package-icon)
(ivy-rich-candidate (:width 0.25))
(all-the-icons-ivy-rich-package-version (:width 16 :face all-the-icons-ivy-rich-version-face))
(all-the-icons-ivy-rich-package-status (:width 12))
(all-the-icons-ivy-rich-package-archive-summary (:width 7 :face all-the-icons-ivy-rich-archive-face))
(all-the-icons-ivy-rich-package-install-summary (:face all-the-icons-ivy-rich-pacage-desc-face)))
:delimiter "\t")
package-reinstall
(:columns
((all-the-icons-ivy-rich-package-icon)
(ivy-rich-candidate (:width 0.25))
(all-the-icons-ivy-rich-package-version (:width 16 :face all-the-icons-ivy-rich-version-face))
(all-the-icons-ivy-rich-package-status (:width 12))
(all-the-icons-ivy-rich-package-archive-summary (:width 7 :face all-the-icons-ivy-rich-archive-face))
(all-the-icons-ivy-rich-package-install-summary (:face all-the-icons-ivy-rich-pacage-desc-face)))
:delimiter "\t")
package-delete
(:columns
((all-the-icons-ivy-rich-package-icon)
(all-the-icons-ivy-rich-package-name (:width 0.25))
(all-the-icons-ivy-rich-package-version (:width 16 :face all-the-icons-ivy-rich-version-face))
(all-the-icons-ivy-rich-package-status (:width 12))
(all-the-icons-ivy-rich-package-archive-summary (:width 7 :face all-the-icons-ivy-rich-archive-face))
(all-the-icons-ivy-rich-package-install-summary (:face all-the-icons-ivy-rich-pacage-desc-face)))
:delimiter "\t")
package-recompile
(:columns
((all-the-icons-ivy-rich-package-icon)
(ivy-rich-candidate (:width 0.25))
(all-the-icons-ivy-rich-package-version (:width 16 :face all-the-icons-ivy-rich-version-face))
(all-the-icons-ivy-rich-package-status (:width 12))
(all-the-icons-ivy-rich-package-archive-summary (:width 7 :face all-the-icons-ivy-rich-archive-face))
(all-the-icons-ivy-rich-package-install-summary (:face all-the-icons-ivy-rich-pacage-desc-face)))
:delimiter "\t")
package-update
(:columns
((all-the-icons-ivy-rich-package-icon)
(ivy-rich-candidate (:width 0.25))
(all-the-icons-ivy-rich-package-version (:width 16 :face all-the-icons-ivy-rich-version-face))
(all-the-icons-ivy-rich-package-status (:width 12))
(all-the-icons-ivy-rich-package-archive-summary (:width 7 :face all-the-icons-ivy-rich-archive-face))
(all-the-icons-ivy-rich-package-install-summary (:face all-the-icons-ivy-rich-pacage-desc-face)))
:delimiter "\t")
package-vc-checkout
(:columns
((all-the-icons-ivy-rich-package-icon)
(ivy-rich-candidate (:width 0.25))
(all-the-icons-ivy-rich-package-version (:width 16 :face all-the-icons-ivy-rich-version-face))
(all-the-icons-ivy-rich-package-status (:width 12))
(all-the-icons-ivy-rich-package-archive-summary (:width 7 :face all-the-icons-ivy-rich-archive-face))
(all-the-icons-ivy-rich-package-install-summary (:face all-the-icons-ivy-rich-pacage-desc-face)))
:delimiter "\t")
package-vc-install
(:columns
((all-the-icons-ivy-rich-package-icon)
(ivy-rich-candidate (:width 0.25))
(all-the-icons-ivy-rich-package-version (:width 16 :face all-the-icons-ivy-rich-version-face))
(all-the-icons-ivy-rich-package-status (:width 12))
(all-the-icons-ivy-rich-package-archive-summary (:width 7 :face all-the-icons-ivy-rich-archive-face))
(all-the-icons-ivy-rich-package-install-summary (:face all-the-icons-ivy-rich-pacage-desc-face)))
:delimiter "\t")
package-vc-update
(:columns
((all-the-icons-ivy-rich-package-icon)
(ivy-rich-candidate (:width 0.25))
(all-the-icons-ivy-rich-package-version (:width 16 :face all-the-icons-ivy-rich-version-face))
(all-the-icons-ivy-rich-package-status (:width 12))
(all-the-icons-ivy-rich-package-archive-summary (:width 7 :face all-the-icons-ivy-rich-archive-face))
(all-the-icons-ivy-rich-package-install-summary (:face all-the-icons-ivy-rich-pacage-desc-face)))
:delimiter "\t")
;; persp
persp-switch-to-buffer
(:columns
((all-the-icons-ivy-rich-buffer-icon)
(ivy-switch-buffer-transformer (:width 0.3))
(ivy-rich-switch-buffer-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(ivy-rich-switch-buffer-indicators (:width 4 :face all-the-icons-ivy-rich-indicator-face :align right))
(all-the-icons-ivy-rich-switch-buffer-major-mode (:width 18 :face all-the-icons-ivy-rich-major-mode-face))
(ivy-rich-switch-buffer-project (:width 0.12 :face all-the-icons-ivy-rich-project-face))
(ivy-rich-switch-buffer-path (:width (lambda (x) (ivy-rich-switch-buffer-shorten-path x (ivy-rich-minibuffer-width 0.3))) :face all-the-icons-ivy-rich-path-face)))
:predicate
(lambda (cand) (get-buffer cand))
:delimiter "\t")
persp-switch
(:columns
((all-the-icons-ivy-rich-project-icon)
(ivy-rich-candidate (:face all-the-icons-ivy-rich-persp-face)))
:delimiter "\t")
persp-frame-switch
(:columns
((all-the-icons-ivy-rich-project-icon)
(ivy-rich-candidate (:face all-the-icons-ivy-rich-persp-face)))
:delimiter "\t")
persp-window-switch
(:columns
((all-the-icons-ivy-rich-project-icon)
(ivy-rich-candidate (:face all-the-icons-ivy-rich-persp-face)))
:delimiter "\t")
persp-kill
(:columns
((all-the-icons-ivy-rich-project-icon)
(ivy-rich-candidate (:face all-the-icons-ivy-rich-persp-face)))
:delimiter "\t")
persp-save-and-kill
(:columns
((all-the-icons-ivy-rich-project-icon)
(ivy-rich-candidate (:face all-the-icons-ivy-rich-persp-face)))
:delimiter "\t")
persp-import-buffers
(:columns
((all-the-icons-ivy-rich-project-icon)
(ivy-rich-candidate (:face all-the-icons-ivy-rich-persp-face)))
:delimiter "\t")
persp-import-win-conf
(:columns
((all-the-icons-ivy-rich-project-icon)
(ivy-rich-candidate (:face all-the-icons-ivy-rich-persp-face)))
:delimiter "\t")
persp-kill-buffer
(:columns
((all-the-icons-ivy-rich-buffer-icon)
(ivy-switch-buffer-transformer (:width 0.3))
(ivy-rich-switch-buffer-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(ivy-rich-switch-buffer-indicators (:width 4 :face all-the-icons-ivy-rich-indicator-face :align right))
(all-the-icons-ivy-rich-switch-buffer-major-mode (:width 18 :face all-the-icons-ivy-rich-major-mode-face))
(ivy-rich-switch-buffer-project (:width 0.12 :face all-the-icons-ivy-rich-project-face))
(ivy-rich-switch-buffer-path (:width (lambda (x) (ivy-rich-switch-buffer-shorten-path x (ivy-rich-minibuffer-width 0.3))) :face all-the-icons-ivy-rich-path-face)))
:predicate
(lambda (cand) (get-buffer cand))
:delimiter "\t")
persp-remove-buffer
(:columns
((all-the-icons-ivy-rich-buffer-icon)
(ivy-switch-buffer-transformer (:width 0.3))
(ivy-rich-switch-buffer-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(ivy-rich-switch-buffer-indicators (:width 4 :face all-the-icons-ivy-rich-indicator-face :align right))
(all-the-icons-ivy-rich-switch-buffer-major-mode (:width 18 :face all-the-icons-ivy-rich-major-mode-face))
(ivy-rich-switch-buffer-project (:width 0.12 :face all-the-icons-ivy-rich-project-face))
(ivy-rich-switch-buffer-path (:width (lambda (x) (ivy-rich-switch-buffer-shorten-path x (ivy-rich-minibuffer-width 0.3))) :face all-the-icons-ivy-rich-path-face)))
:predicate
(lambda (cand) (get-buffer cand))
:delimiter "\t")
persp-add-buffer
(:columns
((all-the-icons-ivy-rich-buffer-icon)
(ivy-switch-buffer-transformer (:width 0.3))
(ivy-rich-switch-buffer-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(ivy-rich-switch-buffer-indicators (:width 4 :face all-the-icons-ivy-rich-indicator-face :align right))
(all-the-icons-ivy-rich-switch-buffer-major-mode (:width 18 :face all-the-icons-ivy-rich-major-mode-face))
(ivy-rich-switch-buffer-project (:width 0.12 :face all-the-icons-ivy-rich-project-face))
(ivy-rich-switch-buffer-path (:width (lambda (x) (ivy-rich-switch-buffer-shorten-path x (ivy-rich-minibuffer-width 0.3))) :face all-the-icons-ivy-rich-path-face)))
:predicate
(lambda (cand) (get-buffer cand))
:delimiter "\t")
kill-buffer
(:columns
((all-the-icons-ivy-rich-buffer-icon)
(ivy-switch-buffer-transformer (:width 0.3))
(ivy-rich-switch-buffer-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(ivy-rich-switch-buffer-indicators (:width 4 :face all-the-icons-ivy-rich-indicator-face :align right))
(all-the-icons-ivy-rich-switch-buffer-major-mode (:width 18 :face all-the-icons-ivy-rich-major-mode-face))
(ivy-rich-switch-buffer-project (:width 0.12 :face all-the-icons-ivy-rich-project-face))
(ivy-rich-switch-buffer-path (:width (lambda (x) (ivy-rich-switch-buffer-shorten-path x (ivy-rich-minibuffer-width 0.3))) :face all-the-icons-ivy-rich-path-face)))
:predicate
(lambda (cand) (get-buffer cand))
:delimiter "\t")
org-switchb
(:columns
((all-the-icons-ivy-rich-buffer-icon)
(ivy-switch-buffer-transformer (:width 0.3))
(ivy-rich-switch-buffer-size (:width 7 :face all-the-icons-ivy-rich-size-face))
(ivy-rich-switch-buffer-indicators (:width 4 :face all-the-icons-ivy-rich-indicator-face :align right))
(all-the-icons-ivy-rich-switch-buffer-major-mode (:width 18 :face all-the-icons-ivy-rich-major-mode-face))
(ivy-rich-switch-buffer-project (:width 0.12 :face all-the-icons-ivy-rich-project-face))
(ivy-rich-switch-buffer-path (:width (lambda (x) (ivy-rich-switch-buffer-shorten-path x (ivy-rich-minibuffer-width 0.3))) :face all-the-icons-ivy-rich-path-face)))
:predicate
(lambda (cand) (get-buffer cand))
:delimiter "\t")
customize-group
(:columns
((all-the-icons-ivy-rich-group-settings-icon)
(ivy-rich-candidate (:width 0.3))
(all-the-icons-ivy-rich-custom-group-docstring (:face all-the-icons-ivy-rich-doc-face)))
:delimiter "\t")
customize-group-other-window
(:columns
((all-the-icons-ivy-rich-group-settings-icon)
(ivy-rich-candidate (:width 0.3))
(all-the-icons-ivy-rich-custom-group-docstring (:face all-the-icons-ivy-rich-doc-face)))
:delimiter "\t")
customize-option
(:columns
((all-the-icons-ivy-rich-variable-settings-icon)
(ivy-rich-candidate (:width 0.3))
(all-the-icons-ivy-rich-custom-variable-docstring (:face all-the-icons-ivy-rich-doc-face)))
:delimiter "\t")
customize-option-other-window
(:columns
((all-the-icons-ivy-rich-variable-settings-icon)
(ivy-rich-candidate (:width 0.3))
(all-the-icons-ivy-rich-custom-variable-docstring (:face all-the-icons-ivy-rich-doc-face)))
:delimiter "\t")
customize-variable
(:columns
((all-the-icons-ivy-rich-variable-settings-icon)
(ivy-rich-candidate (:width 0.3))
(all-the-icons-ivy-rich-custom-variable-docstring (:face all-the-icons-ivy-rich-doc-face)))
:delimiter "\t")
customize-variable-other-window
(:columns
((all-the-icons-ivy-rich-variable-settings-icon)
(ivy-rich-candidate (:width 0.3))
(all-the-icons-ivy-rich-custom-variable-docstring (:face all-the-icons-ivy-rich-doc-face)))
:delimiter "\t")
describe-character-set
(:columns
((all-the-icons-ivy-rich-charset-icon)
(ivy-rich-candidate (:width 0.3))
(all-the-icons-ivy-rich-charset-docstring (:face all-the-icons-ivy-rich-doc-face)))