Emacs fontawesome utility.
- fontawesome font(Download from here)
fontawesome
is available on MELPA and MELPA stable
You can install fontawesome
with the following command.
M-x package-install [RET] fontawesome [RET]
Return code point of font-name
.
This function is interactive function, so you can call it by M-x fontawesome
.
Insert fontawesome font with helm interface
Insert fontawesome font with ivy interface
(insert (propertize (fontawesome "github")
'face '(:family "FontAwesome")))
(defun insert-fontawesome ()
(interactive)
(insert (call-interactively 'fontawesome)))