Skip to content

Instantly share code, notes, and snippets.

@jasonkarns
Created March 13, 2014 03:48
Show Gist options
  • Save jasonkarns/9521609 to your computer and use it in GitHub Desktop.
Save jasonkarns/9521609 to your computer and use it in GitHub Desktop.
vim-projectile file for Lineman projects
{
"README.md": {
"command": "readme"
},
"package.json": {
"command": "package"
},
"bower.json": {
"command": "bower"
},
"Gruntfile.js": {
"command": "grunt"
},
"Gruntfile.coffee": {
"command": "grunt"
},
"config/*.js": {
"command": "config"
},
"config/*.json": {
"command": "config"
},
"config/*.coffee": {
"command": "config"
},
"app/css/*.less": {
"command": "css"
},
"app/css/*.sass": {
"command": "css"
},
"app/css/*.scss": {
"command": "css"
},
"app/css/*.css": {
"command": "css"
},
"app/pages/*.us": {
"command": "page"
},
"app/templates/*.us": {
"command": "template"
},
"app/js/*.js": {
"command": "js",
"alternate": "spec/{}-spec.js"
},
"app/js/*.coffee": {
"command": "js",
"alternate": "spec/{}-spec.coffee"
},
"spec/*-spec.js": {
"command": "spec",
"alternate": "app/js/{}.js"
},
"spec/*-spec.coffee": {
"command": "spec",
"alternate": "app/js/{}.coffee"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment