Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
// TOML language support
"tamasfe.even-better-toml",
// Rust language server
"rust-lang.rust-analyzer",
// Crates.io dependency versions
"fill-labs.dependi",
// Debugger support for Rust and native
"vadimcn.vscode-lldb",
// Snapshot tests integration
"mitsuhiko.insta",
]
}
23 changes: 23 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
// Formatting
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.tabSize": 4,
"editor.rulers": [100],
"files.autoSave": "onWindowChange",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,

// Rust Analyzer
"rust-analyzer.cargo.features": "all",
"rust-analyzer.check.command": "clippy",
"rust-analyzer.imports.granularity.group": "module",
"rust-analyzer.imports.prefix": "crate",

// Language-specific overrides
"[markdown]": {
"editor.rulers": [80],
"editor.tabSize": 2,
}
}