Remove phi-search, it's buggy

This commit is contained in:
2017-08-08 20:55:45 +01:00
parent b2ce61cf6d
commit 5b5e0d0f4a
2 changed files with 0 additions and 23 deletions

View File

@@ -38,7 +38,6 @@
(require 'siren-multiple-cursors)
(require 'siren-org-mode)
(require 'siren-package-lint)
(require 'siren-phi-search)
(require 'siren-rainbow)
(require 'siren-scroll-half-screen)
(require 'siren-smartparens)

View File

@@ -1,22 +0,0 @@
;;; siren-phi-search.el --- jimeh's Emacs Siren: phi-search configuration.
;;; Commentary:
;; Basic configuration for phi-search.
;;; Code:
(use-package phi-search
:bind
("C-s" . phi-search)
("C-r" . phi-search-backward)
:config
(custom-set-faces
'(phi-search-match-face
((t (:background "paleturquoise4"))))
'(phi-search-selection-face
((t (:background "palevioletred2" :foreground "brown4"))))))
(provide 'siren-phi-search)
;;; siren-phi-search.el ends here