Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

15 rader
435 B

  1. ;;-*-mode: emacs-lisp; coding: utf-8;-*-
  2. ;; Setup whitespace mode to highlight tabs and over 80 char spaces
  3. (require 'whitespace)
  4. (setq whitespace-style '(face tabs trailing))
  5. (set-face-attribute 'whitespace-tab nil
  6. :foreground "#2075c7"
  7. :background "lightgrey")
  8. (set-face-attribute 'whitespace-line nil
  9. :foreground "#2075c7"
  10. :background "lightgrey")