aboutsummaryrefslogtreecommitdiffstats
path: root/oni/packages
diff options
context:
space:
mode:
authorGravatar Tom Willemse2025-12-23 01:33:52 -0800
committerGravatar Tom Willemse2025-12-23 01:33:52 -0800
commit89025445903087677e7e392018ba5be1e6d04a02 (patch)
treec460dfb876bb833186f797c3a75cbdcc230cbf15 /oni/packages
parent71af87fb5131f5eb639b437e677cb26a9a63508a (diff)
downloadnew-dotfiles-89025445903087677e7e392018ba5be1e6d04a02.tar.gz
new-dotfiles-89025445903087677e7e392018ba5be1e6d04a02.zip
Flyover: Add package and home service
Diffstat (limited to 'oni/packages')
-rw-r--r--oni/packages/emacs.scm28
1 files changed, 28 insertions, 0 deletions
diff --git a/oni/packages/emacs.scm b/oni/packages/emacs.scm
index 1f6e175..730a36f 100644
--- a/oni/packages/emacs.scm
+++ b/oni/packages/emacs.scm
@@ -951,3 +951,31 @@ machines. See the project page for the complete list of features.
This package provides functionality to store and browse eshell history in atuin.")
(license license:gpl3+))))
+
+(define-public emacs-flyover
+ (package
+ (name "emacs-flyover")
+ (version "20251208.647")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/konrad1977/flyover")
+ (commit "0446b4289bd7a3f169f2ab8eb6f6fa0365322bab")))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0j7m3ma14q5gdlkhiq00f17v7sz8z7ddjv14hijxpmzqc2awrhyd"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-flymake))
+ (arguments
+ '(#:include '("^flyover.el$")
+ #:exclude '()))
+ (home-page "https://github.com/konrad1977/flyover")
+ (synopsis "Display Flycheck and Flymake errors with overlays")
+ (description
+ "This package provides a way to display Flycheck and Flymake errors using
+overlays. It offers customization options for icons, colors, and display
+behavior. Flycheck is optional - if not available, only Flymake support will be
+enabled.")
+ (license license:expat)))
+