Add which-key package

This commit is contained in:
2018-04-17 00:23:59 +01:00
parent d1f793781b
commit 32b8566e37
2 changed files with 15 additions and 0 deletions

View File

@@ -52,6 +52,7 @@
(require 'siren-text-manipulation)
(require 'siren-toggle-quotes)
(require 'siren-undo-tree)
(require 'siren-which-key)
(require 'siren-window-management)
(require 'siren-yasnippet)
(require 'siren-zoom-window)

View File

@@ -0,0 +1,14 @@
;;; 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