dotfiles/.config/Code/User/settings.json
Cyryl Płotnicki 2a43c6d2e9
Basic rust support in vscode linux (#149)
* Basic rust support in vscode linux

* Link in keybindings for vscode

* Install clippy
2017-11-03 18:30:53 +00:00

21 lines
727 B
JSON

{
"window.zoomLevel": 1,
"extensions.autoUpdate": true,
"editor.cursorStyle": "block",
"rust.rustLangSrcPath": "/home/cyryl/dev/rust/src",
"rust.racerPath": "/home/cyryl/.cargo/bin/racer",
"rust.rustfmtPath": "/home/cyryl/.cargo/bin/rustfmt",
"rust.rustsymPath": "/home/cyryl/.cargo/bin/rustsym",
"rust.cargoPath": "/home/cyryl/.cargo/bin/cargo",
"rust.cargoHome": "/home/cyryl/.cargo/",
"editor.wordWrap": true,
"vim.disableAnnoyingNeovimMessage": true,
"rust.rustup": {
"toolchain": "nightly-x86_64-unknown-linux-gnu",
"nightlyToolchain": "nightly-x86_64-unknown-linux-gnu"
},
"rust.mode": "rls",
"rust.rls": {
"useRustfmt": true
}
}