Skip to content

Instantly share code, notes, and snippets.

@edwardsmatt
Last active October 5, 2015 01:07
Show Gist options
  • Save edwardsmatt/2728291 to your computer and use it in GitHub Desktop.
Save edwardsmatt/2728291 to your computer and use it in GitHub Desktop.
Emacs ~/.emacs.d/init.el file * Stop Making Backups, add parens highlighting and add scala-mode2
(show-paren-mode 1)
(setq show-paren-delay 0)
(setq make-backup-files nil)
;(setq url-proxy-services '(
; ("http" . "localhost:3128")))
(require 'package)
(add-to-list 'package-archives
'("melpa" . "http://melpa.milkbox.net/packages/") t)
(package-initialize)
(unless (package-installed-p 'scala-mode2)
(package-refresh-contents) (package-install 'scala-mode2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment