An open API service indexing awesome lists of open source software.

https://github.com/abougouffa/nerd-icons-archive

Nerd Icons integration for archive-mode and tar-mode
https://github.com/abougouffa/nerd-icons-archive

Last synced: 6 months ago
JSON representation

Nerd Icons integration for archive-mode and tar-mode

Awesome Lists containing this project

README

          

#+title: nerd-icons-arhive - Use nerd-icons for archive-mode and tar-mode
#+author: Abdelhak Bougouffa
#+language: en

* Usage
Add ~nerd-icons-archive~ to the ~load-path~

#+begin_src emacs-lisp
(add-to-list 'load-path "path/to/nerd-icons-archive")
(require 'nerd-icons-archive)
(nerd-icons-archive-mode 1)
#+end_src

Or using ~use-package~ and ~straight~:

#+begin_src emacs-lisp
(use-package nerd-icons-archive
:straight (:host github :repo "abougouffa/nerd-icons-archive")
:init
(nerd-icons-archive-mode 1))
#+end_src

Or, the recommended way, by deferring the activation of ~nerd-icons-archive-mode~ until necessary:

#+begin_src emacs-lisp
(use-package nerd-icons-archive
:straight (:host github :repo "abougouffa/nerd-icons-archive")
;; Should be after `tar-mode' or `arc-mode', but `arc-mode' is enough since it is required by the other
:after arc-mode
:init
(nerd-icons-archive-mode 1))
#+end_src

* Screenshot

[[file:screenshot.png]]