• Stars
    star
    116
  • Rank 298,067 (Top 6 %)
  • Language
    Vim Script
  • Created almost 12 years ago
  • Updated about 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Simple little vim-bundle that recognizes .gradle files as being groovy syntax

VIM-GRADLE

This vim bundle simply recognizes .gradle files as being groovy syntax. It also adds a vim compiler plugin for gradle.

Installation

  • Install pathogen into ~/.vim/autoload/ and add the following line to your ~/.vimrc:

      call pathogen#infect()
    
  • Make a clone of the vim-gradle repository:

      mkdir -p ~/.vim/bundle
      cd ~/.vim/bundle
      git clone https://github.com/tfnico/vim-gradle
    
  • OR use git submodules:

      git submodule add https://github.com/tfnico/vim-gradle.git bundle/vim-gradle
      git submodule init
    

Of course, if you use Janus, you should put the clone in ~/.janus/ instead.

That's it. Pathogen should handle the rest.

Usage

Syntax Highlighting

.gradle files will now have groovy syntax highlighting.

Compiler Plugin

You can now use :compiler gradle to set gradle as the compiler. :make build will then run gradle build (for example) and the quickfix window will be loaded with parsed error results.

Credits

Inspiration from vim-less.