Created
March 23, 2015 09:28
-
-
Save kobapan/554c08d85048a6a4d850 to your computer and use it in GitHub Desktop.
elisp 現在行をハイライト
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; in the current buffer, | |
(hl-line-mode) ; enable or disable highlight cursor line | |
(hl-line-mode t) ; enable highlight cursor line | |
(hl-line-mode nil) ; disable highlight cursor line | |
; globally, | |
(global-hl-line-mode) ; enables or disables highlight cursor line | |
(global-hl-line-mode t) ; enable highlight cursor line | |
(global-hl-line-mode nil) ; disable highlight cursor line | |
; change highlight color | |
(custom-set-faces | |
'(highlight ((((class color)) (:background "#CC0066")))) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment