init-icons.el 712 B

1234567891011121314151617181920212223242526272829
  1. ;;; init-icons.el --- .Emacs Configuration -*- lexical-binding: t -*-
  2. ;;; Commentary:
  3. ;;
  4. ;;; Code:
  5. ;;----------------------------------
  6. ;; All-the-icons
  7. ;;----------------------------------
  8. (use-package all-the-icons
  9. :ensure t
  10. :config
  11. ;;----------------------------------
  12. ;; Fonts - connecting with neotree
  13. ;;---------------------------------
  14. (if (member "all-the-icons" (font-family-list))
  15. (message "The all-the-icons are installed (.❛ ᴗ ❛.)")
  16. (setq neotree-mode-hook 'all-the-icons-install-fonts)))
  17. ;; fix performace
  18. (setq inhibit-compacting-font-caches t)
  19. (provide 'init-icons)
  20. ;; Local Variables:
  21. ;; byte-compile-warnings: (not free-vars)
  22. ;; End:
  23. ;;; init-icons.el ends here