;;; init-prog.el --- Initialize Prog mode -*- lexical-binding: t -*- ;;; Commentary: ;; https://www.gnu.org/software/emacs/manual/html_node/elisp/Basic-Major-Modes.html ;; https://git.savannah.gnu.org/cgit/emacs.git/tree/lisp/progmodes/prog-mode.el ;;; Code: (add-hook 'prog-mode-hook (defun my-prog-mode-hook-settings () (setq font-lock-defaults nil) (display-fill-column-indicator-mode 1))) (provide 'init-prog) ;;; init-prog.el ends here