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.
|
- ;;-*-mode: emacs-lisp; coding: utf-8;-*-
-
- (autoload 'makefile-mode "makefile-mode" "mode for makefile stuff" t)
-
- (add-to-list 'auto-mode-alist '("\\.[Mm]akefile\\'" . makefile-mode))
- (add-to-list 'auto-mode-alist '("\\.GNUMakefile\\'" . makefile-mode))
-
- (add-hook 'makefile-mode-hook
- '(lambda ()
- (hl-line-mode)
- (smartparens-mode)
- (whitespace-mode)
- (visual-line-mode)
- (setq tab-width 4)))
|