1
2
3
4
5
6
;; Highlighting current line like textmate: selection hides it.
;; You can use the same color for hl-line and the region.
(global-hl-line-mode t)
(defadvice push-mark (before textmate-hl-toggle activate)
  (global-hl-line-mode -1))
(add-hook 'deactivate-mark-hook (lambda () (global-hl-line-mode t)))