25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

15 satır
463 B

  1. ;;-*-mode: emacs-lisp; coding: utf-8;-*-
  2. (autoload 'makefile-mode "makefile-mode" "mode for makefile stuff" t)
  3. (add-to-list 'auto-mode-alist '("\\.[Mm]akefile\\'" . makefile-mode))
  4. (add-to-list 'auto-mode-alist '("\\.GNUMakefile\\'" . makefile-mode))
  5. (add-hook 'makefile-mode-hook
  6. '(lambda ()
  7. (hl-line-mode)
  8. (smartparens-mode)
  9. (whitespace-mode)
  10. (visual-line-mode)
  11. (setq tab-width 4)))