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

63 lines
2.1 KiB
EmacsLisp

;;; config.el --- compleseus configuration File for Spacemacs
;;
;; Copyright (c) 2012-2022 Sylvain Benner & Contributors
;;
;; Author: Thanh Vuong <thanhvg@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/>.
(defvar compleseus-engine 'vertico
"Options are `selectrum', and `vertico' to use as completion
engine.")
(defvar consult--source-modified-buffers
`(:name "Modified Buffers"
:narrow (?M . "Modified Buffers")
:hidden t
:category buffer
:face consult-buffer
:history buffer-name-history
:state ,#'consult--buffer-state
:items
,(lambda ()
(consult--buffer-query ;; :sort 'visibility
:predicate (lambda (buff)
(and (persp-contain-buffer-p buff)
(buffer-file-name buff)
(buffer-modified-p buff)))
;; :directory 'project
:as #'buffer-name)))
"Per perpecstive modified buffer source.")
(defvar consult--source-persp-buffers
`(
:name "Buffer"
:narrow ?b
:category buffer
:face consult-buffer
:history buffer-name-history
:state ,#'consult--buffer-state
:default t
:items
,(lambda ()
(consult--buffer-query
:sort 'visibility
:predicate #'persp-contain-buffer-p
:as #'buffer-name)))
"Per perpecstive buffer source.")