Rust开发的Vim配置

参考

配置

我的vim是用pathogen来管理插件,下面是配置方法:

  1. 下载插件
git clone --depth=1 https://github.com/rust-lang/rust.vim.git ~/.vim/bundle/rust.vim

如果无法访问github,可以把上面的链接换成https://gitee.com/pengdonglin137/rust.vim

  1. 配置插件
    在.vimrc中添加下的配置:
let g:rustfmt_autosave = 1              " 保存时自动运行 :RustFmt 格式化代码
let g:rustfmt_command = "rustfmt"       " 自定义格式化命令
posted @ 2024-11-27 15:04  dolinux  阅读(26)  评论(0编辑  收藏  举报