Skip to content

My work on integration of Scala into Vim - not a ton here, but useful for me.

License

Notifications You must be signed in to change notification settings

MiniZhuwei/vim-scala

This branch is 28 commits behind derekwyatt/vim-scala:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

71ada50 · Mar 9, 2015
Feb 5, 2015
Feb 5, 2015
Mar 9, 2015
Feb 5, 2015
Mar 4, 2015
Mar 9, 2015
Feb 7, 2015
Feb 5, 2015
Apr 27, 2013
Mar 4, 2015
Mar 1, 2011
Apr 26, 2013
Apr 26, 2013
Apr 26, 2013
Nov 25, 2013
Feb 2, 2015
Apr 26, 2013

Repository files navigation

vim-scala Build Status

This is a "bundle" for Vim that builds off of the initial Scala plugin modules by Stefan Matthias Aust and adds some more "stuff" that I find useful, including all of my notes and customizations.

##Installation

You really should be using Tim Pope's Pathogen module for Vim (http://tammersaleh.com/posts/the-modern-vim-config-with-pathogen) if you're going to clone this repository because, well... you should.

###Using the command-line

Using wget:

mkdir -p ~/.vim/{ftdetect,indent,syntax} && for d in ftdetect indent syntax ; do wget --no-check-certificate -O ~/.vim/$d/scala.vim https://raw.githubusercontent.com/derekwyatt/vim-scala/master/$d/scala.vim; done

Using cURL:

mkdir -p ~/.vim/{ftdetect,indent,syntax} && for d in ftdetect indent syntax ; do curl -o ~/.vim/$d/scala.vim https://raw.githubusercontent.com/derekwyatt/vim-scala/master/$d/scala.vim; done

###Vundle Alternatively, you can use Vundle to manage your plugins.

If you have Vundle installed, simply add the following to your .vimrc:

Plugin 'derekwyatt/vim-scala'

and then run

:PluginInstall

to install it.

##Sorting of import statements :SortScalaImports

There are different modes for import sorting available. For details, please consult the vimdoc help with

:help :SortScalaImports

About

My work on integration of Scala into Vim - not a ton here, but useful for me.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vim Script 72.4%
  • Scala 24.6%
  • Ruby 3.0%