Files
.emacs.d/modules/projects/siren-all-the-icons.el

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