diff options
Diffstat (limited to 'tag-emacs/emacs.d')
-rw-r--r-- | tag-emacs/emacs.d/Cask | 1 | ||||
-rw-r--r-- | tag-emacs/emacs.d/init.el | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/Cask b/tag-emacs/emacs.d/Cask index 92c010ae..f8ed11fb 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 3f8d75ec..e7d63545 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) |