9420f67c17
* 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.
9 lines
258 B
EmacsLisp
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)
|