diff options
| author | 2025-02-14 12:48:16 -0800 | |
|---|---|---|
| committer | 2025-02-18 23:40:18 -0800 | |
| commit | c26414f0b18468d94a0f7f8e190a3af34d1a9eb6 (patch) | |
| tree | 9ab808220833d890384bee422e1e90e909df7226 /oni/packages | |
| parent | 17f1c84beec0d7436e2732928a834f2dee44ff3f (diff) | |
| download | new-dotfiles-c26414f0b18468d94a0f7f8e190a3af34d1a9eb6.tar.gz new-dotfiles-c26414f0b18468d94a0f7f8e190a3af34d1a9eb6.zip | |
surfingkeys: Fix foreground color for banner
Diffstat (limited to 'oni/packages')
| -rw-r--r-- | oni/packages/emacs.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/oni/packages/emacs.scm b/oni/packages/emacs.scm index 2d8dd23..da36e2f 100644 --- a/oni/packages/emacs.scm +++ b/oni/packages/emacs.scm @@ -7,6 +7,8 @@ #:use-module (guix git-download) #:use-module (guix build-system emacs) #:use-module ((guix licenses) #:prefix license:) + #:use-module ((gnu packages emacs) + #:select (emacs-next)) #:use-module (gnu packages emacs-xyz) #:use-module ((gnu packages mail) #:select (notmuch)) @@ -711,3 +713,27 @@ new-theme for a while. I couldn't think of a name so I named it after him.") (synopsis "A Tree-sitter based major mode for editing PHP codes") (description "A Tree-sitter based major mode for editing PHP codes.") (license license:gpl3)))) + +(define-public emacs-next-org-modern + (package + (name "emacs-org-modern") + (version "1.6-1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/minad/org-modern") + (commit version))) + (sha256 + (base32 "0a7viid1lrn02w1n4yjivjyssbd1qq850giqwnp3mrjf9adwzh2a")) + (file-name (git-file-name name version)))) + (build-system emacs-build-system) + (arguments (list #:emacs emacs-next)) + (propagated-inputs (list emacs-compat)) + (home-page "https://github.com/minad/org-modern") + (synopsis "Modern Org style") + (description +"Org Modern implements a modern style for your Org buffers using font locking +and text properties. The package styles headlines, keywords, tables and +source blocks.") + (license license:gpl3+))) |
