aboutsummaryrefslogtreecommitdiffstats
path: root/oni/packages/emacs.scm
diff options
context:
space:
mode:
Diffstat (limited to 'oni/packages/emacs.scm')
-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)))
+