本人在 VS code 环境中进行 rust 学习的编辑器配置。
插件:
Code Spell Checker 单词拼写检查
CodeLLDB Debug工具
Error Lens 行内错误提示
Even Better TOML TOML文件支持,智能提示、格式化……
rust-analyzer rust语言支持,智能提示、格式化、文件跳转……
字体:
字体我使用的 Fira Code
Releases · tonsky/FiraCode (github.com)
配置:
打开 VS code 的 seating.json 文件,按需填入以下配置即可。
用户手册 (rust-analyzer.github.io) RA的配置手册
{
"editor.fontFamily": "Fira Code, monospace", //字体
"editor.fontLigatures": true, //连字
"editor.formatOnSave": true, //保存时格式化
"editor.formatOnType": true, //输入一行后格式化
"editor.formatOnPaste": true, //粘贴后格式化
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer", //默认格式化工具
},
}
如果需要配置代理的话可以参考这个网站:RsProxy
标签:code,格式化,VS,editor,true,rust From: https://www.cnblogs.com/SantiagoZhang/p/17079696.html