The code and data behind xeiaso.net
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

refine vscode settings

Signed-off-by: Christine Dodrill <me@christine.website>

+38 -4
+2 -4
.vscode/settings.json
··· 1 1 { 2 2 "editor.wordWrap": "wordWrapColumn", 3 - "editor.wordWrapColumn": 80, 4 - "editor.wordBasedSuggestions": false, 5 - "[markdown]":{ 3 + "[markdown]": { 6 4 "editor.wordWrap": "wordWrapColumn", 7 5 "editor.wordWrapColumn": 80, 8 - "vim.textwidth": 80, 6 + "editor.wordBasedSuggestions": false 9 7 }, 10 8 }
+36
.vscode/tasks.json
··· 1 + { 2 + // See https://go.microsoft.com/fwlink/?LinkId=733558 3 + // for the documentation about the tasks.json format 4 + "version": "2.0.0", 5 + "options": { 6 + "env": { 7 + "out": "/fake" 8 + } 9 + }, 10 + "tasks": [ 11 + { 12 + "label": "run", 13 + "type": "shell", 14 + "command": "cargo run", 15 + "problemMatcher": [ 16 + "$rustc" 17 + ] 18 + }, 19 + { 20 + "label": "auto rerun", 21 + "type": "shell", 22 + "command": "cargo watch -x run", 23 + "problemMatcher": [ 24 + "$rustc" 25 + ] 26 + }, 27 + { 28 + "label": "test", 29 + "type": "shell", 30 + "command": "cargo test", 31 + "problemMatcher": [ 32 + "$rustc" 33 + ] 34 + } 35 + ] 36 + }