diff --git a/contrib/README.md b/contrib/README.md index f0377dc67..c89c2ef56 100644 --- a/contrib/README.md +++ b/contrib/README.md @@ -6,7 +6,9 @@ for each item will be kept below. ## List of Contrib Items -* `emacs` - Contains a file showing how to associate `Vagrantfile` with - Ruby syntax highlighting. +* `bash` - Contains a bash script for improving autocompletion with bash. +* `emacs` - Contains a file for enabling Ruby syntax highlighting for `Vagrantfile`s in `emacs`. +* `st` - Contains a `.sublime-settings` file for enabling Ruby syntax highlighting + for `Vagrantfile`s in Sublime Text. * `vim` - Contains a `.vim` file for enabling Ruby syntax highlighting - for `Vagrantfile`s. + for `Vagrantfile`s in `vim`. \ No newline at end of file diff --git a/contrib/bash/completion.sh b/contrib/bash/completion.sh index fb6fc508a..96d8e75df 100644 --- a/contrib/bash/completion.sh +++ b/contrib/bash/completion.sh @@ -1,3 +1,5 @@ +#!/bin/bash + # Autocompletion for Vagrant just put this line in your ~/.profile or link this file into it like: # source /path/to/vagrant/contrib/bash/completion.sh _vagrant() { diff --git a/contrib/st/Ruby.sublime-settings b/contrib/st/Ruby.sublime-settings new file mode 100644 index 000000000..120fee4c7 --- /dev/null +++ b/contrib/st/Ruby.sublime-settings @@ -0,0 +1,6 @@ +{ + "extensions": + [ + "Vagrantfile" + ] +}