Yes. I assume these are lisp files, so you need emacs Emacs to automatically be in lisp-mode when viewing these files. There's two solutions:
The simplest thing is to change the extension to
.el. el. By default, those are opened in lisp-mode.If, for some reason you really want to use the
.emacsextension, you'll want to add this somewhere in your~/.emacsfile:(setq auto-mode-alist (append '((".*\.emacs\'" ((".*\\.emacs\\'" . lisp-mode)) auto-mode-alist) )
auto-mode-alist is the list emacs Emacs uses to determine the major mode to use. Each item is a list, the first is the emacs Emacs regular expression emacs Emacs uses to test the filename against, and if true, it uses the mode given in the third item.
(I don't know what the second item is, I've never used it.)
I strongly suggest option 1 though.
