diff options
| author | Ravi R Kiran <aine.marina@gmail.com> | 2013-12-28 04:43:30 (GMT) |
|---|---|---|
| committer | Ravikiran Rajagopal <aine.marina@gmail.com> | 2013-12-28 04:43:30 (GMT) |
| commit | 6074efa72302560985f5d86549af43697b59fa6a (patch) | |
| tree | 8cb5937822ebc06bbb780ea3c65b4d1d0d52b509 | |
| parent | cb549e36a5c750e38046409b1e17da255290e560 (diff) | |
| download | dotemacs-6074efa72302560985f5d86549af43697b59fa6a.zip dotemacs-6074efa72302560985f5d86549af43697b59fa6a.tar.gz dotemacs-6074efa72302560985f5d86549af43697b59fa6a.tar.bz2 | |
Automated emacs help for some prefix keys
| -rw-r--r-- | ravi-init-appearance.el | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/ravi-init-appearance.el b/ravi-init-appearance.el index 5ad145f..108c858 100644 --- a/ravi-init-appearance.el +++ b/ravi-init-appearance.el @@ -104,7 +104,26 @@ (global-undo-tree-mode) (setq undo-tree-auto-save-history t) (setq undo-tree-history-directory-alist - `(("." . ,(expand-file-name "undotree/" (ravi/emacs-file "past"))))) + `(("." . ,(expand-file-name "undotree/" (ravi/emacs-file "past"))))) + ) + :ensure t + ) + +;; Discover as much of emacs as we can +(use-package discover + :init (global-discover-mode 1) + :ensure t + ) + +;; Help for prefix key-bindings not in discover-mode +(use-package guide-key + :config + (progn + (setq guide-key/guide-key-sequence '("C-c p" ;; projectile + "C-c d" ;; doxymacs + "C-x 4" ;; other-window + )) + (guide-key-mode 1) ) :ensure t ) |
