legacy-dotfiles/emacs.d/20-column-marker.el
Tom Willemsen 9420f67c17 Changed load-dir to d-dir, autopair, no comments
* Changed the load-dir variable in .emacs to d-dir (from emacs._d_).
    Using the same variable as emacs didn't seem like a good idea to me.

  * Moved autopair settings from 10-modules and 10-settings to
    20-autopair

  * Removed the folding-mode comments from load files.
2011-04-15 09:48:38 +02:00

9 lines
258 B
EmacsLisp

(require 'column-marker)
(defun set-column-marker ()
(column-marker-1 73)
(column-marker-2 81))
(add-hook 'c-mode-hook 'set-column-marker)
(add-hook 'emacs-lisp-mode-hook 'set-column-marker)
(add-hook 'html-mode-hook 'set-column-marker)