mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
I still prefer selectrum for the time being, but I've written the config, might as well commit it for potential future use or experimentation.
28 lines
561 B
EmacsLisp
28 lines
561 B
EmacsLisp
;;; siren-vertico.el --- jimeh's Emacs Siren: vertico configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for vertico.
|
|
|
|
;;; Code:
|
|
|
|
(require 'siren-orderless)
|
|
|
|
(use-package vertico
|
|
:custom
|
|
(enable-recursive-minibuffers t)
|
|
(resize-mini-windows nil)
|
|
(vertico-count 12)
|
|
(vertico-cycle t)
|
|
|
|
:init
|
|
(defun siren-crm-indicator (args)
|
|
(cons (concat "[CRM] " (car args)) (cdr args)))
|
|
|
|
:config
|
|
(vertico-mode +1)
|
|
(advice-add #'completing-read-multiple :filter-args #'siren-crm-indicator))
|
|
|
|
(provide 'siren-vertico)
|
|
;;; siren-vertico.el ends here
|