mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
23 lines
458 B
EmacsLisp
23 lines
458 B
EmacsLisp
;;; siren-all-the-icons.el --- jimeh's Emacs Siren: all-the-icons configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for all-the-icons.
|
|
|
|
;;; Code:
|
|
|
|
;; Required by all-the-icons
|
|
(use-package memoize)
|
|
|
|
(use-package all-the-icons
|
|
:after memoize
|
|
:if window-system)
|
|
|
|
(use-package all-the-icons-ibuffer
|
|
:after all-the-icons
|
|
:if window-system
|
|
:init (all-the-icons-ibuffer-mode 1))
|
|
|
|
(provide 'siren-all-the-icons)
|
|
;;; siren-all-the-icons.el ends here
|