Rust开发的Vim配置
参考
- https://zhuanlan.zhihu.com/p/675491529
- https://github.com/rust-lang/rust.vim/tree/master?tab=readme-ov-file#pathogen
配置
我的vim是用pathogen来管理插件,下面是配置方法:
- 下载插件
git clone --depth=1 https://github.com/rust-lang/rust.vim.git ~/.vim/bundle/rust.vim
如果无法访问github,可以把上面的链接换成
https://gitee.com/pengdonglin137/rust.vim
- 配置插件
在.vimrc中添加下的配置:
let g:rustfmt_autosave = 1 " 保存时自动运行 :RustFmt 格式化代码
let g:rustfmt_command = "rustfmt" " 自定义格式化命令
本文来自博客园,作者:dolinux,未经同意,禁止转载