diff options
-rw-r--r-- | .emacs.d/init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 65cb9fe..0c35928 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -187,7 +187,8 @@ plain variables. This means that `setopt' will execute any view-read-only t) (add-to-list 'auto-mode-alist '("\\README.*" . text-mode)) (add-to-list 'auto-mode-alist '("\\.*rc$" . conf-mode)) - (add-to-list 'auto-mode-alist '("\\.bashrc$" . sh-mode))) + (add-to-list 'auto-mode-alist '("\\.bashrc$" . sh-mode)) + (add-to-list 'auto-mode-alist '("\\COMMIT_EDITMSG$" . text-mode))) (setq disabled-command-function nil) |