Skip to content

Commit 8f496af

Browse files
committed
Update README.md
Installing vim-scala from the command-line.
1 parent 763b689 commit 8f496af

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ all of my notes and customizations.
99

1010
You really should be using Tim Pope's [Pathogen](https://github.com/tpope/vim-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.
1111

12+
###Using the command-line
13+
14+
Using wget:
15+
16+
```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```
17+
18+
Using cURL:
19+
20+
```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```
21+
1222
###Vundle
1323
Alternatively, you can use [Vundle](https://github.com/gmarik/vundle) to
1424
manage your plugins.

0 commit comments

Comments
 (0)