summaryrefslogtreecommitdiffstats
path: root/lisp/init-imenu.el
blob: b75bef06ee78733405e766d51df818365bd0ba96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
(use-package imenu
  :ensure nil ;; package is bundled with emacs

  :init
  ;; make imenu automatically rescan buffers
  (setq imenu-auto-rescan t)

  ;; C-c i shows imenu
  ;; imenu will use ido completion if ido-ubiquitous-mode is enabled
  :bind ("C-c i" . imenu))

(provide 'init-imenu)