summaryrefslogtreecommitdiff
path: root/.emacs.d/lisp/init-helm.el
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/lisp/init-helm.el')
-rw-r--r--.emacs.d/lisp/init-helm.el15
1 files changed, 15 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-helm.el b/.emacs.d/lisp/init-helm.el
new file mode 100644
index 0000000..52708c1
--- /dev/null
+++ b/.emacs.d/lisp/init-helm.el
@@ -0,0 +1,15 @@
+;;; helm --- Configuration
+
+;;; Commentary:
+
+;;; Code:
+
+(require 'helm-config)
+
+(global-set-key (kbd "M-x") 'helm-M-x)
+(global-set-key (kbd "C-x p") 'helm-find-files)
+
+(helm-mode 1)
+
+(provide 'init-helm)
+;;; init-helm ends here