Cleanup vimrc, shift config in separate files

This commit is contained in:
Vladan Popovic 2019-08-25 18:59:39 +02:00
parent ec09654b44
commit 6421a095f1
5 changed files with 31 additions and 31 deletions

View file

@ -13,9 +13,6 @@ Plugin 'VundleVim/Vundle.vim'
" NERDTree config
Plugin 'scrooloose/nerdtree'
let NERDTreeHighlightCursorLine=1
let NERDTreeMouseMode=2
let NERDTreeIgnore=['\.pyc$', '\.jp?g$', '\.gif$', '\.png$', '\~$', '\.o', '\.log']
" Scala config
Plugin 'derekwyatt/vim-scala'
@ -23,18 +20,10 @@ let g:scala_scaladoc_indent = 1
Plugin 'elmcast/elm-vim'
Plugin 'rust-lang/rust.vim'
Plugin 'racer-rust/vim-racer'
Plugin 'Rykka/riv.vim'
Plugin 'racer-rust/vim-racer' " Rust Language Server
Plugin 'Rykka/riv.vim' " rst formatter and highlighter
" Async Lint Engine
Plugin 'w0rp/ale'
let g:ale_linters = {}
let g:ale_completion_enabled = 1
let g:ale_sign_error = "✗"
let g:ale_sign_warning = "⚠"
"
" Rust linting options
let g:ale_rust_cargo_use_clippy = 1 " installed with `rustup component add clippy-preview`
let g:rustfmt_autosave = 1 " installed with `rustup component add rustfmt`
call vundle#end()