forked from Orchid/orchid
Macro system done in theory
too afraid to begin debugging, resting for a moment
This commit is contained in:
@@ -5,49 +5,66 @@
|
||||
}
|
||||
],
|
||||
"settings": {
|
||||
"editor.rulers": [
|
||||
100 // Important; for accessibility reasons, code cannot be wider than 100ch
|
||||
],
|
||||
"[markdown]": {
|
||||
// markdown denotes line breaks with trailing space
|
||||
"diffEditor.ignoreTrimWhitespace": false,
|
||||
// Disable editor gadgets in markdown
|
||||
"editor.unicodeHighlight.ambiguousCharacters": false,
|
||||
"editor.unicodeHighlight.invisibleCharacters": false,
|
||||
"diffEditor.ignoreTrimWhitespace": false,
|
||||
"editor.wordWrap": "bounded",
|
||||
"editor.wordWrapColumn": 80,
|
||||
"editor.glyphMargin": false,
|
||||
"editor.guides.indentation": false,
|
||||
"editor.lineNumbers": "off",
|
||||
"editor.quickSuggestions": {
|
||||
"comments": "off",
|
||||
"strings": "off",
|
||||
"other": "off"
|
||||
"other": "off",
|
||||
},
|
||||
"editor.lineNumbers": "off",
|
||||
"editor.glyphMargin": false,
|
||||
"editor.rulers": [],
|
||||
"editor.guides.indentation": false,
|
||||
"editor.wordWrap": "bounded",
|
||||
"editor.wordWrapColumn": 80,
|
||||
// wrap lines as we go
|
||||
"editor.formatOnType": true,
|
||||
"editor.detectIndentation": false,
|
||||
"editor.insertSpaces": false,
|
||||
},
|
||||
// Orchid is a human-made project
|
||||
"chat.commandCenter.enabled": false,
|
||||
// use spaces for indentation for Rust for now due to a rustfmt bug
|
||||
"editor.tabSize": 2,
|
||||
"editor.stickyTabStops": true,
|
||||
"editor.detectIndentation": false,
|
||||
"editor.insertSpaces": true,
|
||||
// Important; for accessibility reasons, code cannot be wider than 100ch
|
||||
"editor.rulers": [ 100 ],
|
||||
"editor.formatOnSave": true,
|
||||
"rust-analyzer.showUnlinkedFileNotification": false,
|
||||
"rust-analyzer.checkOnSave": true,
|
||||
"rust-analyzer.check.command": "clippy",
|
||||
"rust-analyzer.rustfmt.extraArgs": [
|
||||
"+nightly"
|
||||
],
|
||||
"git.confirmSync": false,
|
||||
"git.enableSmartCommit": true,
|
||||
"git.autofetch": true,
|
||||
"rust-analyzer.assist.emitMustUse": true,
|
||||
"rust-analyzer.assist.preferSelf": true,
|
||||
"rust-analyzer.cargo.features": "all",
|
||||
"rust-analyzer.check.command": "clippy",
|
||||
"rust-analyzer.check.features": "all",
|
||||
"files.associations": {
|
||||
"*.mjsd": "markdown"
|
||||
},
|
||||
"rust-analyzer.checkOnSave": true,
|
||||
"rust-analyzer.completion.fullFunctionSignatures.enable": true,
|
||||
"rust-analyzer.completion.termSearch.enable": true,
|
||||
"rust-analyzer.inlayHints.parameterHints.enable": false,
|
||||
"rust-analyzer.inlayHints.typeHints.enable": false,
|
||||
"rust-analyzer.rustfmt.extraArgs": [
|
||||
"+nightly",
|
||||
],
|
||||
"rust-analyzer.showUnlinkedFileNotification": false,
|
||||
"swissknife.notesEnabled": false,
|
||||
},
|
||||
"extensions": {
|
||||
"recommendations": [
|
||||
"maptz.regionfolder",
|
||||
"tamasfe.even-better-toml",
|
||||
"yzhang.markdown-all-in-one",
|
||||
"fill-labs.dependi",
|
||||
"gruntfuggly.todo-tree",
|
||||
"vadimcn.vscode-lldb",
|
||||
"maptz.regionfolder",
|
||||
"rust-lang.rust-analyzer",
|
||||
"fill-labs.dependi"
|
||||
"tamasfe.even-better-toml",
|
||||
"vadimcn.vscode-lldb",
|
||||
"yzhang.markdown-all-in-one",
|
||||
]
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user