Skip to content

Instantly share code, notes, and snippets.

@MasWag
Created January 4, 2013 09:22
Show Gist options
  • Save MasWag/4451171 to your computer and use it in GitHub Desktop.
Save MasWag/4451171 to your computer and use it in GitHub Desktop.
;;背景色の設定
(custom-set-faces
'(default ((t
(:background "#000040" :foreground "#e0e0e0")
)))
'(cursor ((((class color)
(background dark))
(:background "#00AA00"))
(((class color)
(background light))
(:background "#999999"))
(t ())
)))
;; C-x cでM-x compileになる
(global-set-key "\C-xc" 'compile)
;; C-h でbackspaceにする
(global-set-key "\C-h" 'delete-backward-char)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment