From 32b8566e37be94f98435d4289289da09b43a4c02 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Tue, 17 Apr 2018 00:23:59 +0100 Subject: [PATCH] Add which-key package --- core/siren-modules.el | 1 + modules/siren-which-key.el | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 modules/siren-which-key.el diff --git a/core/siren-modules.el b/core/siren-modules.el index 02b6731..2d4ef92 100644 --- a/core/siren-modules.el +++ b/core/siren-modules.el @@ -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) diff --git a/modules/siren-which-key.el b/modules/siren-which-key.el new file mode 100644 index 0000000..2b1c147 --- /dev/null +++ b/modules/siren-which-key.el @@ -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