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