From 771ef7e17d98ecd2bcacf84b04852cf730232d1d Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Wed, 2 Oct 2024 09:51:12 +0200 Subject: [PATCH] fixed flymake, added ement matrix client --- init.el | 2 ++ lisp/init-flymake.el | 2 ++ lisp/init-matrix.el | 4 ++++ 3 files changed, 8 insertions(+) create mode 100644 lisp/init-matrix.el diff --git a/init.el b/init.el index a90b26d..b39a3f3 100644 --- a/init.el +++ b/init.el @@ -51,6 +51,7 @@ tvd-config-dir)) (add-to-list 'package-archives '("gnu" . "https://elpa.gnu.org/packages/")) +(add-to-list 'package-archives '("nongnu" . "https://elpa.nongnu.org/nongnu/")) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/")) ;; (setq package-archives @@ -154,6 +155,7 @@ (require 'init-occur) ;; (require 'init-audio) nope, I'm just not using it anymore (require 'init-daemonde) +(require 'init-matrix) ;; emacs configuration (require 'init-windowmgmt) diff --git a/lisp/init-flymake.el b/lisp/init-flymake.el index 9607b58..63b9e19 100644 --- a/lisp/init-flymake.el +++ b/lisp/init-flymake.el @@ -1,3 +1,5 @@ +;; FIXME: how to force bash mode? + (use-package flymake :ensure nil diff --git a/lisp/init-matrix.el b/lisp/init-matrix.el new file mode 100644 index 0000000..101e27d --- /dev/null +++ b/lisp/init-matrix.el @@ -0,0 +1,4 @@ +(use-package ement) + +(provide 'init-matrix) +;;; init-matrix.el ends here