mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add emacs-zoom.
* gnu/packages/emacs-xyz.scm (emacs-zoom): New variable. Change-Id: Idce11959895ee8f5019b17fbfbc01cfa6bc80c16 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
f6b3eca6f3
commit
ed042737f9
1 changed files with 25 additions and 0 deletions
|
@ -1907,6 +1907,31 @@ while the ones that are not being actively edited will be reduced to a smaller
|
|||
size.")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public emacs-zoom
|
||||
(package
|
||||
(name "emacs-zoom")
|
||||
(version "0.3.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/cyrus-and/zoom")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1zzm8kchm5wwxras4bfl46flyfj44bf7qazc5yyahx9qr2ksfnhd"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments (list #:tests? #f)) ;no tests
|
||||
(home-page "https://github.com/cyrus-and/zoom")
|
||||
(synopsis "Fixed and automatic balanced window layout for Emacs")
|
||||
(description
|
||||
"This minor mode takes care of managing the window sizes by
|
||||
enforcing a fixed and automatic balanced layout where the currently
|
||||
selected window is resized according to @code{zoom-size} which can be
|
||||
an absolute value in lines/columns, a ratio between the selected window
|
||||
and frame size or even a custom callback.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public emacs-git-modes
|
||||
(package
|
||||
(name "emacs-git-modes")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue