From 40f14ed503cfb6267b09273079c14db04737a8d0 Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Wed, 21 Aug 2013 10:19:51 -0400 Subject: [PATCH] [emacs] remove diff face colors --- .emacs.d/init.d/diff.el | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 .emacs.d/init.d/diff.el diff --git a/.emacs.d/init.d/diff.el b/.emacs.d/init.d/diff.el deleted file mode 100644 index 45d5446..0000000 --- a/.emacs.d/init.d/diff.el +++ /dev/null @@ -1,10 +0,0 @@ -;; Diff colors -(defun custom-diff-colors () - "update the colors for diff faces" - (set-face-attribute - 'diff-added nil :foreground "green") - (set-face-attribute - 'diff-removed nil :foreground "red") - (set-face-attribute - 'diff-changed nil :foreground "purple")) -(eval-after-load "diff-mode" '(custom-diff-colors))