Merge pull request #3090 from adamlazz/contrib-st3

contrib: Sublime Text 3 Ruby syntax association for Vagrantfiles
This commit is contained in:
Mitchell Hashimoto 2014-03-10 08:27:54 -07:00
commit cd2171c744
3 changed files with 13 additions and 3 deletions

View File

@ -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`.

View File

@ -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() {

View File

@ -0,0 +1,6 @@
{
"extensions":
[
"Vagrantfile"
]
}