Add basic config for phi-search

It's used for searching when multiple-cursors is active.
This commit is contained in:
2017-10-04 14:50:07 +01:00
parent ec3edd8d3e
commit 05a4f716c2
2 changed files with 16 additions and 0 deletions

View File

@@ -16,6 +16,8 @@
("M-RET" . set-rectangular-region-anchor)
:config
(require 'siren-phi-search)
(setq mc/edit-lines-empty-lines 'ignore)
;; Make alt-<click> add additional cursors

View File

@@ -0,0 +1,14 @@
;;; siren-phi-search.el --- jimeh's Emacs Siren: phi-search configuration.
;;; Commentary:
;; Basic configuration for phi-search.
;;; Code:
(use-package phi-search
:config
(setq phi-search-limit 3000)
(provide 'siren-phi-search)
;;; siren-phi-search.el ends here