This commit is contained in:
Alex Yatskov 2020-08-08 15:00:21 -07:00
parent 984cb78031
commit 0dbfa95355
5 changed files with 9 additions and 0 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
.vim/.netrwhist .vim/.netrwhist
.vim/view

3
.gitmodules vendored
View File

@ -118,3 +118,6 @@
[submodule ".vim/bundle/ale"] [submodule ".vim/bundle/ale"]
path = .vim/bundle/ale path = .vim/bundle/ale
url = https://github.com/dense-analysis/ale.git url = https://github.com/dense-analysis/ale.git
[submodule ".vim/bundle/rust.vim"]
path = .vim/bundle/rust.vim
url = https://github.com/rust-lang/rust.vim

1
.vim/bundle/rust.vim Submodule

@ -0,0 +1 @@
Subproject commit 0d8ce07aaa3b95e61bf319b25bb3b1a4ecc780c2

1
.vim/ftplugin/rust.vim Normal file
View File

@ -0,0 +1 @@
let b:ale_linters = ['rls']

View File

@ -61,3 +61,6 @@ let g:rooter_silent_chdir = 1
" vim-markdown " vim-markdown
let g:vim_markdown_folding_disabled = 1 let g:vim_markdown_folding_disabled = 1
" rust.vim
let g:rustfmt_autosave = 1