summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--emacs.d/init.el12
1 files changed, 11 insertions, 1 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el
index 726a2f1..0f65e70 100644
--- a/emacs.d/init.el
+++ b/emacs.d/init.el
@@ -124,7 +124,17 @@
(add-hook 'before-save-hook 'gofmt-before-save)
(setq tab-width 4)))))
-(use-package helm)
+(use-package helm
+ :ensure t
+ :bind (("C-c h l" . helm-resume))
+ :diminish " Ⓗ"
+ :init
+ (helm-mode 1)
+ (with-eval-after-load 'helm-config
+ (warn "`helm-config' loaded! Get rid of it ASAP!"))
+ :config
+ ;; Split inside selected window with Helm
+ (setq helm-split-window-in-side-p t))
(use-package ibuffer
:bind ("C-x C-b" . ibuffer))