From 4d4de17124dea63d2bf271d7ae675b1adcf56cc9 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sun, 16 Apr 2023 11:50:54 -0700 Subject: [PATCH] =?UTF-8?q?Add=20package=20=E2=80=98emacs-oni-eshell?= =?UTF-8?q?=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- oni/packages/emacs-config.scm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/oni/packages/emacs-config.scm b/oni/packages/emacs-config.scm index bbefd98..c77395c 100644 --- a/oni/packages/emacs-config.scm +++ b/oni/packages/emacs-config.scm @@ -525,3 +525,17 @@ Emacs"))) ("emacs-elisp-format" ,emacs-elisp-format))) (synopsis "My Emacs Lisp configuration") (description "This package provides my configuration for Emacs Lisp."))) + +(define-public emacs-oni-eshell + (package + (inherit emacs-oni-config) + (name "emacs-oni-eshell") + (arguments + '(#:include '("oni-eshell.el"))) + (propagated-inputs + `(("emacs-esh-autosuggest" ,emacs-esh-autosuggest) + ("emacs-xterm-color" ,emacs-xterm-color) + ("emacs-eshell-syntax-highlighting" ,emacs-eshell-syntax-highlighting) + ("emacs-eshell-fringe-status" ,emacs-eshell-fringe-status))) + (synopsis "My Emacs Lisp configuration") + (description "This package provides my configuration for Emacs Lisp.")))