branch: elpa/julia-mode
commit e4b34286bc8ec3006a24ece6a1280ede943eb6e1
Author: Yichao Yu <[email protected]>
Commit: Yichao Yu <[email protected]>
Remove test branch in travis, add README
---
.travis.yml | 1 -
README.md | 12 ++++++++++++
2 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/.travis.yml b/.travis.yml
index 32a1dfe..5ecccec 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,7 +14,6 @@ matrix:
branches:
only:
- master
- - travis
install:
- if [ "$EMACS" = 'emacs23' ]; then
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..289195f
--- /dev/null
+++ b/README.md
@@ -0,0 +1,12 @@
+# Emacs major mode for the julia programming language
+
+[](https://travis-ci.org/JuliaLang/julia-emacs)
+
+# Install
+
+Put the following code in your `.emacs`, `site-load.el`, or other relevant file
+
+```elisp
+(add-to-list 'load-path "path-to-julia-mode")
+(require 'julia-mode)
+```