2019-07-29 11:10:24 +02:00
|
|
|
" git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
|
|
|
|
" :VundleInstall
|
|
|
|
"
|
|
|
|
|
|
|
|
filetype off
|
|
|
|
|
|
|
|
" set the runtime path to include Vundle and initialize
|
|
|
|
set rtp+=~/.vim/bundle/Vundle.vim
|
|
|
|
call vundle#begin()
|
|
|
|
|
|
|
|
" let Vundle manage Vundle, required
|
|
|
|
Plugin 'VundleVim/Vundle.vim'
|
|
|
|
|
|
|
|
" NERDTree config
|
|
|
|
Plugin 'scrooloose/nerdtree'
|
|
|
|
|
|
|
|
" Scala config
|
|
|
|
Plugin 'derekwyatt/vim-scala'
|
|
|
|
let g:scala_scaladoc_indent = 1
|
|
|
|
|
|
|
|
Plugin 'elmcast/elm-vim'
|
|
|
|
Plugin 'rust-lang/rust.vim'
|
2019-08-25 18:59:39 +02:00
|
|
|
Plugin 'racer-rust/vim-racer' " Rust Language Server
|
|
|
|
Plugin 'Rykka/riv.vim' " rst formatter and highlighter
|
2019-07-29 11:10:24 +02:00
|
|
|
|
|
|
|
" Async Lint Engine
|
|
|
|
Plugin 'w0rp/ale'
|
|
|
|
|
|
|
|
call vundle#end()
|