dotfiles/nvim/lib/languages/rust.vim

8 lines
187 B
VimL
Raw Normal View History

let g:rust_recommended_style = 0
2019-06-20 23:27:47 +00:00
if !g:vim_ide | finish | endif
call coc#add_extension('coc-rls')
let g:coc_filetypes += ['rust']
call coc#config('rust', { 'clippy_preference': 'on' })