Table of Contents
Show icons in helm-buffers-list, helm-find-files, and helm-recentf for Emacs in terminal (emacs -nw) 😎
If you use Emacs GUI you should refer to helm-treemacs-icons
cf) The line at the very bottom is not part of Emacs. It is tmux status bar 😉
- A font from icons-in-terminal which unifies many useful fonts. Follow the instruction found there.
- An icons-in-terminal.el package. Put the elisp files in a directory where load-path locates
Put the elisp files of this project into a directory where load-path indicates. And add few lines of elisp code to your init.el
(add-to-list 'load-path "<YOUR_PATH>/icons-in-terminal-helm")
(require 'icons-in-terminal-helm)
(icons-in-terminal-helm-enable)
;; Add key bindings for helm functions if you wish 😄
(global-set-key (kbd "C-x C-r") #'helm-recentf)
(global-set-key (kbd "C-x b") #'helm-buffers-list)
(global-set-key (kbd "C-x C-f") #'helm-find-files)
Enjoy it! 😀