Skip to content

Instantly share code, notes, and snippets.

@kobapan
Created March 23, 2015 09:28
Show Gist options
  • Save kobapan/554c08d85048a6a4d850 to your computer and use it in GitHub Desktop.
Save kobapan/554c08d85048a6a4d850 to your computer and use it in GitHub Desktop.
elisp 現在行をハイライト
; 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