From 8178bc8b36ace464bc7775cbbe66881a8725bb81 Mon Sep 17 00:00:00 2001 From: Marc Pohling Date: Sun, 27 May 2018 17:32:06 +0200 Subject: [PATCH] added imenu-list --- config.org | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/config.org b/config.org index 35000e1..e2e7060 100644 --- a/config.org +++ b/config.org @@ -490,6 +490,23 @@ ;) #+END_SRC +** imenu-list + A minor mode to show imenu in a sidebar. + Call imenu-list-smart-toggle. + [[https://github.com/bmag/imenu-list][Source]] + +#+BEGIN_SRC emacs-lisp +(use-package imenu-list + :ensure t + :config + (setq imenu-list-focus-after-activation t + imenu-list-auto-resize t + imenu-list-position 'right) + :bind + (:map global-map + ([f9] . imenu-list-smart-toggle)) + ) +#+END_SRC ** Treemacs A file manager comparable to neotree. [[https://github.com/Alexander-Miller/treemacs][Github]]