dotfiles/.vim/vundlerc.vim

46 lines
909 B
VimL
Raw Normal View History

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
" Elm
2019-07-29 11:10:24 +02:00
Plugin 'elmcast/elm-vim'
" Rust
2019-07-29 11:10:24 +02:00
Plugin 'rust-lang/rust.vim'
Plugin 'racer-rust/vim-racer' " Rust Language Server
" Python
Plugin 'vim-scripts/indentpython.vim'
2019-07-29 11:10:24 +02:00
" Async Lint Engine
Plugin 'w0rp/ale'
" Git
Plugin 'airblade/vim-gitgutter'
" Drawing ASCII
Plugin 'vim-scripts/DrawIt'
" Highlight ion shell scripts
Plugin 'vmchale/ion-vim'
2019-07-29 11:10:24 +02:00
2020-06-16 21:38:14 +02:00
Plugin 'vim-airline/vim-airline'
Plugin 'eagletmt/ghcmod-vim'
Plugin 'Shougo/vimproc'
Plugin 'neovimhaskell/haskell-vim.git'
2019-07-29 11:10:24 +02:00
call vundle#end()