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

https://github.com/honmaple/emacs-maple-explorer

Create file, imenu, buffer sidebar on Emacs quickly
https://github.com/honmaple/emacs-maple-explorer

Last synced: about 1 year ago
JSON representation

Create file, imenu, buffer sidebar on Emacs quickly

Awesome Lists containing this project

README

          

* emacs-maple-explorer
** screenshots
[[https://github.com/honmaple/emacs-maple-explorer/blob/master/screenshot/example.png]]

** How to use
#+begin_src bash
git clone https://github.com/honmaple/emacs-maple-explorer ~/.emacs.d/site-lisp/maple-explorer
#+end_src

#+begin_src elisp
(require 'maple-explorer)
(when (and (display-graphic-p) *icon*) (maple-explorer-icon-mode))

;; with use-package
(use-package maple-explorer
:quelpa (:fetcher github :repo "honmaple/emacs-maple-explorer")
:commands (maple-explorer-file maple-explorer-buffer maple-explorer-imenu maple-explorer-recentf)
:config
(setq maple-explorer-icon 'nerd-icons)
;; or
(setq maple-explorer-icon 'all-the-icons)

(add-to-list 'maple-explorer-display-alist '(file . ((side . left) (slot . -1)))))
#+end_src