Skip to content

Instantly share code, notes, and snippets.

@mtornwall
Created May 22, 2013 20:45
Show Gist options
  • Save mtornwall/5630756 to your computer and use it in GitHub Desktop.
Save mtornwall/5630756 to your computer and use it in GitHub Desktop.
emacs mark 80th column
;; Download fci-mode from http://www.emacswiki.org/emacs/fill-column-indicator.el
;; Add this to .emacs.d/init.el
(require 'fill-column-indicator)
(define-globalized-minor-mode global-fci-mode
fci-mode (lambda () (fci-mode 1)))
(setq-default fci-rule-color "red")
(setq-default fci-rule-column 80)
(global-fci-mode 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment