Drop use-package
[~bandali/configs] / lisp / bandali-ivy.el
CommitLineData
4c05c418
AB
1;;; bandali-ivy.el --- bandali's Ivy setup -*- lexical-binding: t; -*-
2
3;; Copyright (C) 2018-2020 Amin Bandali
4
5;; Author: Amin Bandali <bandali@gnu.org>
6;; Keywords: matching
7
8;; This program is free software; you can redistribute it and/or modify
9;; it under the terms of the GNU General Public License as published by
10;; the Free Software Foundation, either version 3 of the License, or
11;; (at your option) any later version.
12
13;; This program is distributed in the hope that it will be useful,
14;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16;; GNU General Public License for more details.
17
18;; You should have received a copy of the GNU General Public License
19;; along with this program. If not, see <https://www.gnu.org/licenses/>.
20
21;;; Commentary:
22
23;; My configuration for Ivy and family.
24
25;;; Code:
26
c84be134
AB
27(run-with-idle-timer 0.3 nil #'require 'ivy)
28(with-eval-after-load 'ivy
29 ;; ivy
30 (csetq ivy-wrap t
31 ;; ivy-height 14
32 ivy-use-virtual-buffers t
33 ivy-virtual-abbreviate 'abbreviate
34 ivy-count-format "%d/%d ")
679463c6 35
c9cc2425
AB
36 (defvar b/ivy-ignore-buffer-modes
37 '(;; dired-mode
38 ;; magit-mode
39 erc-mode))
679463c6
AB
40 (defun b/ivy-ignore-buffer-p (str)
41 "Return non-nil if str names a buffer with a major mode
42derived from one of `b/ivy-ignore-buffer-modes'.
43
44This function is intended for use with `ivy-ignore-buffers'."
45 (let* ((buf (get-buffer str))
46 (mode (and buf (buffer-local-value 'major-mode buf))))
47 (and mode
48 (apply #'provided-mode-derived-p mode b/ivy-ignore-buffer-modes))))
c84be134
AB
49 (add-to-list 'ivy-ignore-buffers #'b/ivy-ignore-buffer-p)
50
51 (define-key ivy-minibuffer-map [escape] #'keyboard-escape-quit)
52 (define-key ivy-minibuffer-map [S-up]
53 #'ivy-previous-history-element)
54 (define-key ivy-minibuffer-map [S-down]
55 #'ivy-next-history-element)
56 (define-key ivy-minibuffer-map (kbd "DEL")
57 #'ivy-backward-delete-char)
58
59 (ivy-mode 1)
60
61 ;; swiper
62 (require 'swiper)
63 (global-set-key (kbd "C-S-s") #'swiper-isearch)
64
65 ;; counsel
66 (require 'counsel)
679463c6 67 (counsel-mode 1)
c84be134
AB
68 (defalias 'locate #'counsel-locate)
69 (global-set-key (kbd "C-c f r") #'counsel-recentf)
70 (define-key minibuffer-local-map
71 (kbd "C-r") #'counsel-minibuffer-history))
679463c6
AB
72
73(provide 'bandali-ivy)
4c05c418 74;;; bandali-ivy.el ends here