aboutsummaryrefslogtreecommitdiff
path: root/.emacs
diff options
context:
space:
mode:
authorRyan Kavanagh <rak@debian.org>2019-06-04 10:33:56 -0400
committerRyan Kavanagh <rak@debian.org>2019-06-04 10:33:56 -0400
commitaf6dde2bf10c41e2b134ed1fff9420dda11b4ecd (patch)
tree4f64e0aca7b92317e7f7f7a6e7cc6554e59e9b49 /.emacs
parentproxy nntp through linux.gp (diff)
Basic helm config
Diffstat (limited to '.emacs')
-rw-r--r--.emacs7
1 files changed, 7 insertions, 0 deletions
diff --git a/.emacs b/.emacs
index 7006217..351563c 100644
--- a/.emacs
+++ b/.emacs
@@ -121,6 +121,13 @@
:hook ((haskell-mode . turn-on-haskell-doc-mode)
(haskell-mode . turn-on-haskell-indentation)))
+(use-package helm
+ :ensure t
+ :bind (("M-x" . helm-M-x)
+ ("C-x C-f" . helm-find-files))
+ :config
+ (helm-mode 1))
+
(use-package info-look
:ensure t)