X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage5%2Fmisc%2Femacs%2Femacsrc;h=ad63356f69c8dbc24aadfdcb315378cabf8f806a;hb=84b83228f5a3e70ead5b92b517e1aa0afaeac295;hp=2d8b3fbec3feef17c49dad513cc26b0dfa1c2f45;hpb=4d52eba7984806a55873064c36eb09b2eeaa2853;p=hvlinux.git diff --git a/stage5/misc/emacs/emacsrc b/stage5/misc/emacs/emacsrc index 2d8b3fb..ad63356 100644 --- a/stage5/misc/emacs/emacsrc +++ b/stage5/misc/emacs/emacsrc @@ -125,10 +125,10 @@ (c-set-style "K&R") (setq c-basic-offset 4)) -;; Default for .h and .d files -> linux mode. +;; Default for .h and .c files -> linux mode. (add-to-list 'auto-mode-alist '("\.[ch]$" . linux-c-mode)) -;; Default for DAP .h and .d files -> linux mode. +;; Default for DAP .h and .c files -> linux mode. (add-to-list 'auto-mode-alist '(".*/dap.*" . dap-c-mode)) ;; Verilog mode @@ -162,6 +162,9 @@ ;; Add the .mak suffix to the auto-mode-alist: (setq auto-mode-alist (cons '("\\.mak$" . makefile-mode) auto-mode-alist)) +;; Add the Makefile prefix to the auto-mode-alist: +(add-to-list 'auto-mode-alist '("Makefile" . makefile-mode)) + ;; When an Emacs init file gets large or has a lot of function definitions, you ;; should consider compiling it: it will load faster when Emacs starts, and its ;; functions will execute faster.