X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage5%2Fmisc%2Femacs%2Femacsrc;h=d9259f5be4911fe537d112ca43d81af87dc683ed;hb=0a06f07a9134afb9018e5a8922b475d0d39aebc4;hp=79ab86528ca0b56d7703e569711e9e5b4355dd54;hpb=0573d7309daf628b46d1d19e252f62886e734e18;p=hvlinux.git diff --git a/stage5/misc/emacs/emacsrc b/stage5/misc/emacs/emacsrc index 79ab865..d9259f5 100644 --- a/stage5/misc/emacs/emacsrc +++ b/stage5/misc/emacs/emacsrc @@ -10,7 +10,7 @@ ;; Emacs Load Path (setq load-path (cons "/usr/local/share/emacs/site-lisp" load-path)) -;; Affichage du numéro de colonne +;; Affichage du numéro de colonne (setq column-number-mode t) ;; Always end a file with a newline @@ -73,13 +73,10 @@ (interactive) (compile (concat "checkpatch.pl --no-tree --emacs --strict --file " (buffer-file-name)))) -;; buffer-cycle.el ;; F1: Switch to previous buffers -(autoload 'cycle-buffer-prev "buffer-cycle" t) -(global-set-key [f1] 'cycle-buffer-prev) +(global-set-key [f1] 'previous-buffer) ;; F2: Switch to next buffers -(autoload 'cycle-buffer-next "buffer-cycle" t) -(global-set-key [f2] 'cycle-buffer-next) +(global-set-key [f2] 'next-buffer) ;; F4: make clean (global-set-key [f4] 'compile-make-clean) @@ -103,6 +100,9 @@ ;; 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) @@ -118,18 +118,18 @@ (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") (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. -(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) @@ -159,12 +159,21 @@ ;; 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)) ;; 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.