Skip to content

rhdxmr/icons-in-terminal-helm

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

icons-in-terminal-helm

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

Screenshot

M-x helm-find-files helm-ffiles

M-x helm-recentf helm-recentf

M-x helm-buffers-list helm-buffers

cf) The line at the very bottom is not part of Emacs. It is tmux status bar 😉

Pre-requisites

  1. A font from icons-in-terminal which unifies many useful fonts. Follow the instruction found there.
  2. An icons-in-terminal.el package. Put the elisp files in a directory where load-path locates

Install

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! 😀

About

Integration between helm and treemacs icons

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Emacs Lisp 100.0%