From fd6003233a2baf937171090805e496f045e13fec Mon Sep 17 00:00:00 2001 From: James Patrick Date: Wed, 9 Aug 2023 13:44:47 -0400 Subject: [PATCH] Adding github to auto-mode-alist --- emacs/config.el | 3 ++- emacs/config.org | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/emacs/config.el b/emacs/config.el index 73afbb2..cb6d775 100644 --- a/emacs/config.el +++ b/emacs/config.el @@ -25,7 +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)) +(add-to-list 'auto-mode-alist '("/\\(tmp\\|private/var\\)/.*/tmp_.*.greenfiling.com.*\\.txt" . markdown-mode)) +(add-to-list 'auto-mode-alist '("/\\(tmp\\|private/var\\)/.*/tmp_.*.github.com.*\\.txt" . markdown-mode)) (setq fancy-splash-image (concat doom-user-dir "./.resources/doom.png")) diff --git a/emacs/config.org b/emacs/config.org index d8ee9e1..181e5cc 100644 --- a/emacs/config.org +++ b/emacs/config.org @@ -121,10 +121,11 @@ I use the [[https://www.nerdfonts.com/][nerdfont]]'s [[https://github.com/i-tu/H #+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. +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)) +(add-to-list 'auto-mode-alist '("/\\(tmp\\|private/var\\)/.*/tmp_.*.greenfiling.com.*\\.txt" . markdown-mode)) +(add-to-list 'auto-mode-alist '("/\\(tmp\\|private/var\\)/.*/tmp_.*.github.com.*\\.txt" . markdown-mode)) #+end_src ** Doom Modules