|
|
@ -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]] |
|
|
|