summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--emacs.d/inits/20_helm.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/emacs.d/inits/20_helm.el b/emacs.d/inits/20_helm.el
index 9186105..6795e23 100644
--- a/emacs.d/inits/20_helm.el
+++ b/emacs.d/inits/20_helm.el
@@ -2,6 +2,12 @@
:ensure t
:bind (("C-x C-f" . helm-find-files)
("M-x" . helm-M-x))
+ :init
+ (setq helm-display-function
+ (lambda (buf)
+ (split-window-vertically)
+ (other-window 1)
+ (switch-to-buffer buf)))
:config
(helm-mode))