Add emacsrc bitbake configuration
authorHugo Villeneuve <hugo@hugovil.com>
Mon, 31 Mar 2014 16:12:31 +0000 (12:12 -0400)
committerHugo Villeneuve <hugo@hugovil.com>
Mon, 31 Mar 2014 16:12:31 +0000 (12:12 -0400)
stage5/misc/emacs/emacsrc

index f558b61..9d336b2 100644 (file)
   (setq indent-tabs-mode t)
 )
 
-(defun dap-c-mode ()
-  "C mode with adjusted defaults for use with DAP source code."
+(defun company-c-mode ()
+  "C mode with adjusted defaults for use with my company source code."
   (interactive)
   (c-mode)
   (c-set-style "K&R")
 ;; Default for .h and .c files -> linux mode.
 (add-to-list 'auto-mode-alist '("\.[ch]$" . linux-c-mode))
 
-;; Default for DAP .h and .c files -> linux mode.
-(add-to-list 'auto-mode-alist '(".*/dap.*" . dap-c-mode))
+;; Default for company .h and .c files -> linux mode.
+(add-to-list 'auto-mode-alist '(".*/company.*" . company-c-mode))
 
 ;; Verilog mode
 (autoload 'verilog-mode "verilog-mode" "Verilog mode" t)
 ;; Default for Altium Delphi scripts (.pas) files -> linux mode.
 (add-to-list 'auto-mode-alist '("\\.pas$" . delphi-mode))
 
+;; Default for bitbake configuration files
+(add-to-list 'auto-mode-alist '("\\.bb$" . conf-mode))
+
 ;; Add the .mak suffix to the auto-mode-alist:
 (setq auto-mode-alist (cons '("\\.mak$" . makefile-mode) auto-mode-alist))