diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-01-19 20:20:17 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-01-19 20:20:17 -0800 |
commit | 1de84445a894f3d3940ab7d147af6e243046d303 (patch) | |
tree | c12bf4f125f3b32494a9ef86d8520c65bf636833 | |
parent | Remove configuration for `vim` and all the scripts (diff) | |
download | emacs.d-1de84445a894f3d3940ab7d147af6e243046d303.tar.gz |
[emacs] Fix a couple of bindings for helm.
-rw-r--r-- | emacs.d/inits/20_helm.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/emacs.d/inits/20_helm.el b/emacs.d/inits/20_helm.el index f969fc3..8cc68ea 100644 --- a/emacs.d/inits/20_helm.el +++ b/emacs.d/inits/20_helm.el @@ -1,5 +1,7 @@ (use-package helm :ensure t :diminish helm-mode + :bind (("C-x C-f" . helm-find-files) + ("M-x" . helm-M-x)) :config (helm-mode)) |