summaryrefslogtreecommitdiff
path: root/.emacs.d/lisp/init-helm.el~
diff options
context:
space:
mode:
authorSteve Lee <me@xiangyangli.com>2017-12-15 07:36:33 +0800
committerSteve Lee <me@xiangyangli.com>2017-12-15 07:36:33 +0800
commit8dd747b1db2b7f51a5077ceefcbbb76203c5bc05 (patch)
tree77b8c475f28b89f5dde89fc23f6068b288bc2bea /.emacs.d/lisp/init-helm.el~
parentdbff7cfe3fae6418bd37d897c6b3703d3ccf87cf (diff)
downloaddotfiles-8dd747b1db2b7f51a5077ceefcbbb76203c5bc05.tar.xz
dotfiles-8dd747b1db2b7f51a5077ceefcbbb76203c5bc05.zip
update
Diffstat (limited to '.emacs.d/lisp/init-helm.el~')
-rw-r--r--.emacs.d/lisp/init-helm.el~15
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..0353c64
--- /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 C-p") 'helm-find-files)
+
+(helm-mode 1)
+
+(provide 'init-helm)
+;;; init-helm ends here