summary refs log tree commit diff stats
path: root/tag-emacs
diff options
context:
space:
mode:
Diffstat (limited to 'tag-emacs')
-rw-r--r--tag-emacs/emacs.d/Cask1
-rw-r--r--tag-emacs/emacs.d/init.el7
2 files changed, 8 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/Cask b/tag-emacs/emacs.d/Cask
index 92c010a..f8ed11f 100644
--- a/tag-emacs/emacs.d/Cask
+++ b/tag-emacs/emacs.d/Cask
@@ -40,6 +40,7 @@
 (depends-on "helm")
 (depends-on "helm-dash")
 (depends-on "helm-projectile")
+(depends-on "helm-swoop")
 (depends-on "help-fns+")
 (depends-on "hemisu-theme")
 (depends-on "jinja2-mode")
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el
index 3f8d75e..e7d6354 100644
--- a/tag-emacs/emacs.d/init.el
+++ b/tag-emacs/emacs.d/init.el
@@ -1043,6 +1043,13 @@ mouse-1: Display Line and Column Mode Menu"))))))
 (req-package goto-chg
   :bind ("C-x SPC" . goto-last-change))
 
+(req-package helm-swoop
+  :bind (("C-=" . helm-swoop)
+         ("C-c C-=" . helm-multi-swoop))
+  :init (progn
+          (bind-key "C-=" #'helm-swoop isearch-mode-map)
+          (bind-key "C-=" #'helm-multi-swoop-all-from-helm-swoop)))
+
 (req-package multiple-cursors
   :config (progn
             (bind-key "C-." #'mc/mark-next-like-this)