Add shell-mode for Bitbake file

This commit is contained in:
nemunaire 2016-03-04 11:24:28 +01:00
parent f76704f18b
commit 0d096766f6
1 changed files with 3 additions and 0 deletions

View File

@ -14,6 +14,9 @@
;; SH mode
(add-to-list 'auto-mode-alist '("\\.pro$" . sh-mode)) ; Qt .pro files
(add-to-list 'auto-mode-alist '("configure$" . sh-mode))
(add-to-list 'auto-mode-alist '("\\.bb$" . conf-mode))
(add-to-list 'auto-mode-alist '("\\.bbclass$" . conf-mode))
(add-to-list 'auto-mode-alist '("\\.bbappend$" . conf-mode))
;; Go mode
(require 'go-mode-autoloads)