Files
.emacs.d/modules/editor/siren-which-key.el
Jim Myhrberg 87a86191db Majorly re-organize modules
- Split large modules into smaller parts (e.g. siren-text-manipulation)
- Organize modules into high level groups:
  - completion
  - core
  - editor
  - languages
  - linting
  - misc
  - navigation
  - projects
  - spelling
  - text-editing
  - version-control
  - windows
  - workspaces
2018-05-20 17:31:11 +01:00

15 lines
259 B
EmacsLisp

;;; siren-which-key.el --- jimeh's Emacs Siren: which-key configuration.
;;; Commentary:
;; Basic configuration for which-key.
;;; Code:
(use-package which-key
:config
(which-key-mode))
(provide 'siren-which-key)
;;; siren-which-key.el ends here