From 34900333b7aacadafd2ea7fee6eb7007b0ef1563 Mon Sep 17 00:00:00 2001 From: James Patrick Date: Tue, 31 Jan 2023 22:33:03 -0500 Subject: [PATCH] Added Tridactyl auto-mode for work redmine. --- emacs/config.el | 2 ++ emacs/config.org | 7 +++++++ 2 files changed, 9 insertions(+) diff --git a/emacs/config.el b/emacs/config.el index 09e5916..8fd879c 100644 --- a/emacs/config.el +++ b/emacs/config.el @@ -25,6 +25,8 @@ doom-variable-pitch-font (font-spec :family "Alegreya" :height 1.3) doom-big-font (font-spec :family "Hasklig" :size 18)) +(add-to-list 'auto-mode-alist '("/\\(tmp\\|private/var\\)/.*/tmp_redmine.greenfiling.com.*\\.txt" . markdown-mode)) + (setq fancy-splash-image (concat doom-user-dir "./.resources/doom.png")) (setq ispell-dictionary "en" diff --git a/emacs/config.org b/emacs/config.org index 78c918c..1a84a6d 100644 --- a/emacs/config.org +++ b/emacs/config.org @@ -115,6 +115,13 @@ I use the [[https://www.nerdfonts.com/][nerdfont]]'s [[https://github.com/i-tu/H doom-big-font (font-spec :family "Hasklig" :size 18)) #+end_src +*** Tridactyl +I am currently using Firefox with [[https://github.com/tridactyl/tridactyl][Tridactyl]]. The =editorcmd= creates a temporary file & opens it with the editor of choice. The domain is included in the temporary file name. We can use this to set the syntax of the file in question. This likely just be markdown. + +#+begin_src emacs-lisp +(add-to-list 'auto-mode-alist '("/\\(tmp\\|private/var\\)/.*/tmp_redmine.greenfiling.com.*\\.txt" . markdown-mode)) +#+end_src + ** Doom Modules The configuration is below is pulled from the template =init.example.el= provided by doom. This one is based off commit [[https://github.com/doomemacs/doomemacs/blob/e96624926d724aff98e862221422cd7124a99c19/templates/init.example.el][e966249]].