emacs.d

bloated emacs configuration
git clone git://git.ckyln.com/~cem/emacs.d.git
Log | Files | Refs | README

commit 1025df6b81794ce59afc23fd7e84cf01d135088d
parent ad4ce00498de60ad963f56e613c78e949f4622ea
Author: Cem Keylan <cem@ckyln.com>
Date:   Wed, 15 Jul 2020 14:54:09 +0300

helm: use helm-M-x and enable globally

Diffstat:
Minit.org | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/init.org b/init.org @@ -556,11 +556,13 @@ and many more. :ensure t :commands (helm-find-files helm-buffers-list) :config + (bind-key "M-x" 'helm-M-x) (bind-key "C-x C-f" 'helm-find-files) (bind-key "C-c s m" 'helm-man-woman) (bind-key "C-c s a" 'helm-apropos) (bind-key "C-x i" 'helm-imenu) (bind-key "C-x b" 'helm-buffers-list) + (helm-mode 1) (cheatsheet-add-group 'Helm '(:key "C-c s m" :description "Open manual page") '(:key "c-c s a" :description "Emacs apropos")