Emacs personal configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 line
329B

  1. (autoload 'octave-mode "octave-mod" nil t)
  2. (setq auto-mode-alist
  3. (cons '("\\.m$" . octave-mode) auto-mode-alist))
  4. (add-hook 'octave-mode-hook
  5. (lambda ()
  6. (abbrev-mode 1)
  7. (auto-fill-mode 1)
  8. (if (eq window-system 'x)
  9. (font-lock-mode 1))))
  10. (provide 'init-octave)