asok / all-the-icons-ivy

all-the-icons.el for Ivy/Counsel
95 stars 9 forks source link

** Melpa

Once you have setup [[https://melpa.org/#/getting-started][Melpa]] you can use ~package-install~ command to install the package. The package name is ~all-the-icons-ivy~. After that add to your config:

+BEGIN_SRC elisp

(all-the-icons-ivy-setup)

+END_SRC

or using [[https://github.com/jwiegley/use-package][Use-package]]:

+BEGIN_SRC elisp

 (use-package all-the-icons-ivy
   :init (add-hook 'after-init-hook 'all-the-icons-ivy-setup))

+END_SRC

** Manual

Clone this repo and:

+BEGIN_SRC elisp

(add-to-load-path "/path/to/repo") (all-the-icons-ivy-setup)

+END_SRC