Skip to content

Instantly share code, notes, and snippets.

@phpisciuneri
phpisciuneri / .emacs
Created November 10, 2015 15:40
scala-mode2 for emacs v24
;;
;; 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)
@phpisciuneri
phpisciuneri / buildtools.sh
Created November 10, 2015 01:02
Install autoconf and automake Mac OS X
##
# 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)