1
0
Fork 0
emacs-config/oni-ivy.el

62 lines
1.7 KiB
EmacsLisp
Raw Normal View History

2019-03-01 07:01:47 +01:00
;;; oni-ivy.el --- Ivy configuration -*- lexical-binding: t; -*-
;; Copyright (C) 2019 Tom Willemse
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
2019-05-23 05:49:31 +02:00
;; Version: 20190522204855
;; Package-Requires: (ivy ivy-hydra diminish ivy-posframe)
2019-03-01 07:01:47 +01:00
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; Ivy configuration.
;;; Code:
(require 'ivy)
(require 'ivy-hydra)
2019-05-23 05:49:31 +02:00
(require 'ivy-posframe)
2019-03-01 07:01:47 +01:00
2019-03-01 07:06:47 +01:00
(defun oni-ivy--disable (orig-fun &rest args)
"Disable ivy while running ORIG-FUN with ARGS."
(let ((ivy-enabled ivy-mode))
(unwind-protect
(progn
(when ivy-enabled
(ivy-mode -1))
(apply orig-fun args))
(when ivy-enabled
(ivy-mode 1)))))
(when (eq system-type 'windows-nt)
(with-eval-after-load 'grep
(add-function :around (symbol-function 'grep-read-files)
#'oni-ivy--disable)))
2019-05-23 05:49:31 +02:00
(setq ivy-display-function #'ivy-posframe-display-at-frame-center)
2019-03-01 07:01:47 +01:00
(diminish 'ivy-mode)
;;;###autoload
(add-hook 'emacs-startup-hook 'ivy-mode)
2019-05-23 05:49:31 +02:00
(ivy-posframe-enable)
;;;###autoload(with-eval-after-load 'ivy (require 'oni-ivy))
2019-03-01 07:01:47 +01:00
(provide 'oni-ivy)
;;; oni-ivy.el ends here