fontawesome

https://github.com/syohex/emacs-fontawesome.git

git clone 'git://github.com/syohex/emacs-fontawesome.git'
8

fontawesome melpa badge melpa stable badge

Emacs fontawesome utility.

Requirements

Function

(fontawesome font-name)

Return code point of font-name. This function is interactive function, so you can call it by M-x fontawesome.

M-x helm-fontawesome

Insert fontawesome font with helm interface

helm-fontawesome

Sample

(insert (propertize (fontawesome "github")
        'face '(:family "FontAwesome")))

(defun insert-fontawesome ()
  (interactive)
  (insert (call-interactively 'fontawesome)))