spacemacs/layers/+completion/ivy/config.el

75 lines
2.8 KiB
EmacsLisp
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;;; config.el --- Ivy Layer Configuration File for Spacemacs
;;
;; Copyright (c) 2012-2022 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;; 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 <http://www.gnu.org/licenses/>.
;; Layer Variables
(defvar ivy-enable-icons nil
"If non-nil, enable icons in `ivy-rich-mode'.")
(defvar ivy-enable-advanced-buffer-information nil
"If non-nil, enable `ivy-rich' which adds information on buffers.")
(defvar ivy-ret-visits-directory nil
"If non-nil, swap `RET' and `C-j' so that `RET' goes into directory like Ido.")
;; Private Variables
(defvar spacemacs--counsel-commands
'(;; --line-number forces line numbers (disabled by default on windows)
;; no --vimgrep because it adds column numbers that wgrep can't handle
;; see https://github.com/syl20bnr/spacemacs/pull/8065
("rg" . "rg --smart-case --no-heading --color never --line-number --max-columns 150 %s %S .")
("ag" . "ag --nocolor --nogroup %s %S .")
("pt" . "pt -e --nocolor --nogroup %s %S .")
("ack" . "ack --nocolor --nogroup %s %S .")
("grep" . "grep -nrP %s %S ."))
"An alist of search commands and their corresponding commands
with options to run in the shell.")
(defvar spacemacs--counsel-search-max-path-length 30
"Truncate the current path in counsel search if it is longer
than this amount.")
(defvar spacemacs--counsel-initial-number-cand 100)
(defvar spacemacs--ivy-file-actions
'(("f" find-file-other-frame "other frame")
("j" find-file-other-window "other window")
("v" spacemacs/find-file-vsplit "in vertical split")
("s" spacemacs/find-file-split "in horizontal split")
("l" find-file-literally "literally")
("d" spacemacs/delete-file-confirm "delete file")
("r" spacemacs/rename-file "rename file"))
"Default ivy actions for files.")
(defvar spacemacs--ivy-grep-actions
(cl-loop for j in spacemacs--ivy-file-actions
for key = (nth 0 j)
for func = (nth 1 j)
for desc = (nth 2 j)
collect `(,key (lambda (x) (spacemacs//counsel-with-git-grep (quote ,func) x)) ,desc))
"Default ivy actions to be used with git-grep output.")