emacs: Remove all source control hooks
authorHugo Villeneuve <hugo@hugovil.com>
Fri, 28 Mar 2014 02:15:01 +0000 (22:15 -0400)
committerHugo Villeneuve <hugo@hugovil.com>
Fri, 28 Mar 2014 02:15:01 +0000 (22:15 -0400)
Also automatically load autoconf-mode for autoconf configure files.

stage5/misc/emacs/emacsrc

index ad63356..ec171f7 100644 (file)
 ;; Modes
 ;;==================================================
 
+;; Remove all source control hooks:
+(setq vc-handled-backends ())
+
 (defun linux-c-mode ()
   "C mode with adjusted defaults for use with the Linux kernel."
   (interactive)
 ;; Add the Makefile prefix to the auto-mode-alist:
 (add-to-list 'auto-mode-alist '("Makefile" . makefile-mode))
 
+;; Autoconf mode
+(add-to-list 'auto-mode-alist
+             '("/configure\\.\\(ac\\|in\\)\\'" . autoconf-mode))
+(add-to-list 'auto-mode-alist
+             '("/ac\\(include\\|local\\)\\.m4\\'" . autoconf-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.