X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage5%2Fmisc%2Femacs%2Femacsrc;h=ad63356f69c8dbc24aadfdcb315378cabf8f806a;hb=84b83228f5a3e70ead5b92b517e1aa0afaeac295;hp=ba3528735f2558e2b76ae1f7fb8e4d2445fff4db;hpb=cafa439bf53e1523f8ea9cc1ff01621bd4f8ebe7;p=hvlinux.git diff --git a/stage5/misc/emacs/emacsrc b/stage5/misc/emacs/emacsrc index ba35287..ad63356 100644 --- a/stage5/misc/emacs/emacsrc +++ b/stage5/misc/emacs/emacsrc @@ -22,6 +22,9 @@ ;; Replaces tabs in files with spaces (setq-default indent-tabs-mode nil) +;; Display trailing whitespace +(setq-default show-trailing-whitespace t) + ;; Makes the compilation buffer always scrolls to follow ;; output as it comes in. (setq compilation-scroll-output t) @@ -29,6 +32,9 @@ ;; Pour avoir les accents (set-keyboard-coding-system 'utf-8) +;; Pour que la touche backspace fonctionne aussi en mode console: +(normal-erase-is-backspace-mode 0) + ;; Set up the keyboard so the delete key on both the regular keyboard ;; and the keypad delete the character under the cursor and to the right ;; under X, instead of the default, backspace behavior. @@ -60,7 +66,7 @@ (compile "make clean")) (defun compile-make () - (interactive) + (interactive) (compile "make")) (defun checkpatch() @@ -112,9 +118,19 @@ (setq indent-tabs-mode t) ) -;; Default for .h and .d files -> linux mode. +(defun dap-c-mode () + "C mode with adjusted defaults for use with DAP source code." + (interactive) + (c-mode) + (c-set-style "K&R") + (setq c-basic-offset 4)) + +;; 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)) + ;; Verilog mode (autoload 'verilog-mode "verilog-mode" "Verilog mode" t) (add-to-list 'auto-mode-alist '("\\.v\\'" . verilog-mode)) @@ -140,6 +156,15 @@ (autoload 'muttrc-mode "muttrc-mode" "Major mode to edit muttrc files" t) (add-to-list 'auto-mode-alist '("muttrc\\'" . muttrc-mode)) +;; Default for Altium Delphi scripts (.pas) files -> linux mode. +(add-to-list 'auto-mode-alist '("\\.pas$" . delphi-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)) + ;; 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.