Skip to content

Instantly share code, notes, and snippets.

@defunkt
Created March 6, 2010 10:11
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save defunkt/323619 to your computer and use it in GitHub Desktop.
Save defunkt/323619 to your computer and use it in GitHub Desktop.
Installing mustache-mode.el

https://github.com/mustache/emacs

In your shell:

cd ~/.emacs.d/vendor
curl -O https://github.com/mustache/emacs/raw/master/mustache-mode.el

In your Emacs config:

(add-to-list 'load-path "~/.emacs.d/vendor/mustache-mode.el")
(require 'mustache-mode)
@idlecool
Copy link

if wget do not works for anyone, use curl
curl https://github.com/defunkt/mustache/raw/master/contrib/mustache-mode.el > mustache-mode.el

@jroes
Copy link

jroes commented Apr 25, 2011

I needed to use:

(require 'mustache-mode)

@defunkt
Copy link
Author

defunkt commented Apr 25, 2011

Thanks @idlecool and @jroes!

@shurizzle
Copy link

@steder
Copy link

steder commented Jul 3, 2012

Yeah, you need to specify the raw url like bsnux or just tell curl to follow redirects. So this works as well:

curl -L -O https://github.com/mustache/emacs/raw/master/mustache-mode.el

@Wilfred
Copy link

Wilfred commented Oct 12, 2014

This package is now available on MELPA, and I'd strongly recommend installing it there. It's easy, it works, it's integrated nicely. http://melpa.milkbox.net/#/mustache-mode

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment