From Demis Balbach to ~abcdw/rde-devel
--- src/rde/features/wm.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/src/rde/features/wm.scm b/src/rde/features/wm.scm index d86f4a0..58e3343 100644 --- a/src/rde/features/wm.scm +++ b/src/rde/features/wm.scm @@ -71,6 +71,7 @@ waybar-idle-inhibitor waybar-clock waybar-battery waybar-custom [message trimmed]
From Demis Balbach to ~abcdw/rde-devel
Hello, I've tested this for a couple of days. I really like it so far. I only really have 2 suggestions: - Maybe we can expose `evil-collection-setup-minibuffer' as an option for the feature? Like --8<---------------cut here---------------start------------->8--- (define* (feature-emacs-evil #:key (in-minibuffer? #t) ...
From Demis Balbach to ~abcdw/rde-discuss
Hello, I played around with adding tree-sitter support to feature-javascript today (but I guess the same is true for other features, like feature-clojure). Inside the feature, I tried doing something like this: --8<---------------cut here---------------start------------->8--- (if (version< emacs-major-version "29") (progn (require 'treesit) (if (treesit-ready-p 'javascript) (add-to-list 'major-mode-remap-alist
From Demis Balbach to ~abcdw/rde-devel
--- src/contrib/features/javascript.scm | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/src/contrib/features/javascript.scm b/src/contrib/features/javascript.scm index 492fb95..b4ce2bd 100644 --- a/src/contrib/features/javascript.scm +++ b/src/contrib/features/javascript.scm @@ -55,6 +55,10 @@ (file-append node-typescript-language-server "/bin/typescript-language-server") node-typescript-language-server)) (define node-executable (if (any-package? node)[message trimmed]
From Demis Balbach to ~abcdw/rde-devel
Hello Nicolas, very nice work!! -- Best regards / Mit freundlichen Grüßen, Demis Balbach
From Demis Balbach to ~abcdw/rde-devel
--- src/rde/features/wm.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/rde/features/wm.scm b/src/rde/features/wm.scm index 488c6a0..d86f4a0 100644 --- a/src/rde/features/wm.scm +++ b/src/rde/features/wm.scm @@ -516,6 +516,7 @@ module will be added to the BAR-ID." #:key (bar-id 'main) (persistent-workspaces '()) (all-outputs? #f) (format-icons '(("1" . ) [message trimmed]
From Demis Balbach to ~abcdw/rde-devel
Hello, this is quite old by now. But just today I watched your steam on Mail processing and I noticed that you used M-^, and yes you are correct that's pretty useful. I'll use that from now on. Thanks! -- Best regards / Mit freundlichen Grüßen, Demis Balbach
From Demis Balbach to ~abcdw/rde-discuss
Hello, So a couple of months later this still is an item on my todo list. msmtp introduced an `eval` command: https://github.com/marlam/msmtp-mirror/issues/73 However it doesn't seem like the author of isync is willing to implement something similiar: https://sourceforge.net/p/isync/feature-requests/17/ Can we still make it work from our side? --
From Demis Balbach to ~abcdw/rde-devel
Thanks Andrew! -- Best regards / Mit freundlichen Grüßen, Demis Balbach
From Demis Balbach to ~abcdw/rde-devel
--- src/rde/packages/emacs.scm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/rde/packages/emacs.scm b/src/rde/packages/emacs.scm index 122990c..74098f7 100644 --- a/src/rde/packages/emacs.scm +++ b/src/rde/packages/emacs.scm @@ -20,6 +20,7 @@ (define-module (rde packages emacs) #:use-module (gnu packages) #:use-module (gnu packages emacs) #:use-module (gnu packages text-editors) [message trimmed]