25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
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)))