How to set syntax highlighting on for Emacs files - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T02:13:45Z http://stackoverflow.com/feeds/question/1051578 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1051578/how-to-set-syntax-highlighting-on-for-emacs-files 0 How to set syntax highlighting on for Emacs files Masi 2009-06-26T22:38:28Z 2009-08-17T09:37:22Z <p>My .emacs is like a roadmap for me where I source many files. Their extension is .emacs: for instance, </p> <pre><code> fileName.emacs </code></pre> <p>The problem is that only ~/.emacs has syntax highlighting.</p> <p>I would like to have the syntax highlighting for all sourced files which end with .emacs.</p> <p><strong>How can you put syntax highlighting on to all sourced .emacs -files?</strong></p> http://stackoverflow.com/questions/1051578/how-to-set-syntax-highlighting-on-for-emacs-files/1051624#1051624 10 Answer by AFoglia for How to set syntax highlighting on for Emacs files AFoglia 2009-06-26T22:53:03Z 2009-08-14T13:47:36Z <p>Yes. I assume these are lisp files, so you need Emacs to automatically be in lisp-mode when viewing these files. There's two solutions:</p> <ol> <li><p>The simplest thing is to change the extension to <code>.el</code>. By default, those are opened in lisp-mode.</p></li> <li><p>If, for some reason you really want to use the <code>.emacs</code> extension, you'll want to add this somewhere in your <code>~/.emacs</code> file:</p> <pre><code>(setq auto-mode-alist (append '((".*\\.emacs\\'" . lisp-mode)) auto-mode-alist) ) </code></pre></li> </ol> <p><code>auto-mode-alist</code> is the list Emacs uses to determine the major mode to use. Each item is a list, the first is the Emacs regular expression Emacs uses to test the filename against, and if true, it uses the mode given in the third item.</p> <p>(I don't know what the second item is, I've never used it.)</p> <p>I strongly suggest option 1 though.</p> http://stackoverflow.com/questions/1051578/how-to-set-syntax-highlighting-on-for-emacs-files/1051700#1051700 4 Answer by Svante for How to set syntax highlighting on for Emacs files Svante 2009-06-26T23:27:11Z 2009-06-26T23:27:11Z <p>You can set the mode in the first non-blank line of the file:</p> <pre><code>;-*-Lisp-*- </code></pre> <p>This is a comment for Lisp, but causes Emacs to switch to Lisp mode upon reading it into the buffer (<a href="http://www.gnu.org/software/emacs/manual/html%5Fnode/emacs/Choosing-Modes.html#Choosing-Modes" rel="nofollow">reference</a>).</p> http://stackoverflow.com/questions/1051578/how-to-set-syntax-highlighting-on-for-emacs-files/1287043#1287043 1 Answer by vedang for How to set syntax highlighting on for Emacs files vedang 2009-08-17T09:37:22Z 2009-08-17T09:37:22Z <p>@masi</p> <p>In the accepted answer, you should probably use emacs-lisp-mode instead of lisp-mode, since all of these files are going to be in elisp, not lisp. The distinction is minor, and probably not of any great significance, but the emacs guys must have written a separate emacs-lisp-mode for some reason right? </p>