Added scala support
This commit is contained in:
parent
c2c2eb4c12
commit
5f920e2a81
5 changed files with 22 additions and 2 deletions
8
.gitmodules
vendored
8
.gitmodules
vendored
|
@ -8,5 +8,11 @@
|
|||
path = bundle/airline
|
||||
url = https://github.com/vim-airline/vim-airline
|
||||
[submodule "bundle/vim-colorschemes"]
|
||||
path = bundle/vim-colorschemes
|
||||
path = bundle/colorschemes
|
||||
url = https://github.com/flazz/vim-colorschemes
|
||||
[submodule "bundle/vim-scala"]
|
||||
path = bundle/vim-scala
|
||||
url = https://github.com/derekwyatt/vim-scala
|
||||
[submodule "bundle/syntastic"]
|
||||
path = bundle/syntastic
|
||||
url = https://github.com/scrooloose/syntastic
|
||||
|
|
1
bundle/syntastic
Submodule
1
bundle/syntastic
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit d8af5028ecd541f721dab769479092b643f47a76
|
1
bundle/vim-scala
Submodule
1
bundle/vim-scala
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 842baaff633b61fcc92e1db10042f0ed9571cf95
|
14
vimrc
14
vimrc
|
@ -43,6 +43,18 @@ set number
|
|||
set backspace=indent,eol,start
|
||||
set hlsearch
|
||||
|
||||
set splitright
|
||||
set splitbelow
|
||||
|
||||
map <C-n> :NERDTreeToggle<CR>
|
||||
|
||||
let g:airline#extensions#tabline#enabled = 1
|
||||
|
||||
set laststatus=2
|
||||
"
|
||||
"" I think this is some command for OS X compatibility? I don't know. Leaving
|
||||
"" it here so that I can find it later if I need it.
|
||||
"set term=xterm
|
||||
"set term=xterm-color
|
||||
|
||||
colorscheme 256-grayvim
|
||||
"colorscheme gentooish
|
||||
|
|
Loading…
Reference in a new issue