Last active
October 5, 2015 01:07
-
-
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
This file contains hidden or 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
(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