From 0ed8e4e63b5f6a658e18dd81bfbb5258c4abfc8c Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Mon, 10 May 2010 14:47:16 -0700 Subject: [PATCH] change line highlight colour & fix C-z still suspending --- emacs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/emacs b/emacs index 84bb1df..1366bc5 100644 --- a/emacs +++ b/emacs @@ -72,7 +72,7 @@ (global-hl-line-mode 1) ;; To customize the background color -(set-face-background 'hl-line "#330") +(set-face-background 'hl-line "#191919") ;;;;;;;;;;;;; @@ -321,6 +321,7 @@ (global-set-key "\M-`" 'other-window) ;; custom key bindings under a common prefix +(global-unset-key "\C-z") (global-set-key "\C-z" nil) ; Suspend is useless. Give me C-z! (global-set-key "\C-zc" 'comment-line) (global-set-key "\C-zf" 'find-file-at-point)