This file contains 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
## | |
# Install latest autoconf and automake-1.15 on Mac OS X | |
# - Check for the latest version of automake at: http://ftpmirror.gnu.org/automake | |
# | |
# Usage: | |
# - Source this script: $ . buildtools.sh | |
# | |
# This script was adapted from: | |
# - https://gist.github.com/jellybeansoup/4192307 | |
# - http://superuser.com/questions/383580/how-to-install-autoconf-automake-and-related-tools-on-mac-os-x-from-source (JakeGould answer) |
This file contains 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
;; | |
;; add syntax highlighting and code indenting for scala | |
;; see https://github.com/hvesalai/scala-mode2 | |
;; REQUIRES: emacs >= v24 | |
;; | |
(require 'package) | |
(add-to-list 'package-archives | |
'("melpa" . "http://melpa.milkbox.net/packages/") t) | |
(package-initialize) | |
(unless (package-installed-p 'scala-mode2) |