me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-consult-projectile.

* gnu/packages/emacs-xyz.scm (emacs-consult-projectile): New variable.

Change-Id: Id7de103e052b0900069757fe56ddc1b10a875660
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
master
Daniel Szmulewicz 2024-07-14 18:10:42 +03:00 committed by Liliana Marie Prikler
parent 05cf5f6d47
commit 3bd9ac84e4
No known key found for this signature in database
GPG Key ID: 442A84B8C70E2F87
1 changed files with 26 additions and 0 deletions

View File

@ -39934,6 +39934,32 @@ workspace diagnostics, symbols, and file symbols from @{emacs-lsp-mode}
by leveraging @code{emacs-consult} APIs.")
(license license:expat)))
(define-public emacs-consult-projectile
(let ((commit "400439c56d17bca7888f7d143d8a11f84900a406")
(revision "1"))
(package
(name "emacs-consult-projectile")
(version (git-version "0.7" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://gitlab.com/OlMon/consult-projectile")
(commit "400439c56d17bca7888f7d143d8a11f84900a406")))
(file-name (git-file-name name version))
(sha256
(base32 "1abd2dw3zpiln9pd7l3j78wl3lwapcmf1ilijv3vin9g0wqb7hmn"))))
(build-system emacs-build-system)
(propagated-inputs (list emacs-consult emacs-projectile))
(home-page "https://gitlab.com/OlMon/consult-projectile")
(synopsis "Consult integration for projectile")
(description
"This package provides a multiview for displaying open buffers, files and
directories accociated with a project. When no project is open in the current
buffer display a list of known project and select a file from the selected
project. Additionally seperate single source function are available.")
(license license:gpl3+))))
(define-public emacs-context-transient
(package
(name "emacs-context-transient")