Skip to content

Instantly share code, notes, and snippets.

@ihodes
Created August 22, 2013 21:39
Show Gist options
  • Save ihodes/6313140 to your computer and use it in GitHub Desktop.
Save ihodes/6313140 to your computer and use it in GitHub Desktop.
(add-to-list 'load-path "~/.emacs.d")
(require 'better-defaults)
(require 'ensure-packages)
(require 'bindings)
(dolist (x '(scheme emacs-lisp lisp clojure))
(when window-system
(font-lock-add-keywords
(intern (concat (symbol-name x) "-mode"))
'(("(\\|)" . 'esk-paren-face))))
(add-hook
(intern (concat (symbol-name x) "-mode-hook")) 'paredit-mode))
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(custom-safe-themes (quote ("e16a771a13a202ee6e276d06098bc77f008b73bbac4d526f160faa2d76c1dd0e" "dd4db38519d2ad7eb9e2f30bc03fba61a7af49a185edfd44e020aa5345e3dca7" default))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment