mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
11 lines
268 B
VimL
11 lines
268 B
VimL
let g:rust_recommended_style = 0
|
|
|
|
augroup vimrc-rust
|
|
autocmd FileType rust setlocal matchpairs-=<:>
|
|
augroup END
|
|
|
|
if !g:vim_ide | finish | endif
|
|
|
|
call coc#add_extension('coc-rls')
|
|
let g:coc_filetypes += ['rust']
|
|
call coc#config('rust', { 'clippy_preference': 'on' })
|