forked from cadey/xesite
refine vscode settings
Signed-off-by: Christine Dodrill <me@christine.website>
This commit is contained in:
parent
f8c2897765
commit
d978995f79
|
@ -1,10 +1,8 @@
|
||||||
{
|
{
|
||||||
"editor.wordWrap": "wordWrapColumn",
|
"editor.wordWrap": "wordWrapColumn",
|
||||||
"editor.wordWrapColumn": 80,
|
"[markdown]": {
|
||||||
"editor.wordBasedSuggestions": false,
|
|
||||||
"[markdown]":{
|
|
||||||
"editor.wordWrap": "wordWrapColumn",
|
"editor.wordWrap": "wordWrapColumn",
|
||||||
"editor.wordWrapColumn": 80,
|
"editor.wordWrapColumn": 80,
|
||||||
"vim.textwidth": 80,
|
"editor.wordBasedSuggestions": false
|
||||||
},
|
},
|
||||||
}
|
}
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||||
|
// for the documentation about the tasks.json format
|
||||||
|
"version": "2.0.0",
|
||||||
|
"options": {
|
||||||
|
"env": {
|
||||||
|
"out": "/fake"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "run",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "cargo run",
|
||||||
|
"problemMatcher": [
|
||||||
|
"$rustc"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "auto rerun",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "cargo watch -x run",
|
||||||
|
"problemMatcher": [
|
||||||
|
"$rustc"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "test",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "cargo test",
|
||||||
|
"problemMatcher": [
|
||||||
|
"$rustc"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in New Issue