aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/init-icons.el
blob: 198d8c04ae4631cf8545254d389e203b659b3663 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;;----------------------------------
;; All-the-icons
;;----------------------------------
(use-package all-the-icons)

;;----------------------------------
;; Fonts - connecting with neotree
;;---------------------------------
(if (file-exists-p "~/.local/share/fonts/all-the-icons.ttf")
    (message "the icons are installed :)")
  (setq neotree-mode-hook 'all-the-icons-install-fonts)
  )

;; fix performace
(setq inhibit-compacting-font-caches t)

(provide 'init-icons)