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