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
- Host: GitHub
- URL: https://github.com/honmaple/emacs-maple-explorer
- Owner: honmaple
- License: gpl-3.0
- Created: 2019-10-24T16:16:41.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-22T07:49:28.000Z (almost 2 years ago)
- Last Synced: 2025-02-14T17:43:05.961Z (over 1 year ago)
- Language: Emacs Lisp
- Homepage:
- Size: 1.3 MB
- Stars: 21
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
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