summary refs log tree commit diff
path: root/emacs.d/custom/fcuny-make.el
blob: 2479f625a288a4d17661c8a2f39e003356cb0400 (plain) (blame)
1
2
3
4
5
6
(use-package make-mode
  :after (flycheck flyspell)
  :config
  (add-hook 'makefile-mode-hook (lambda () (setq-local tab-width 2))))

(provide 'fcuny-make)