1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
"files.autoSave": "afterDelay",
"editor.fontSize": 18,
"editor.fontFamily": "'Fira Code', 'Noto Sans CJK KR'",
"editor.fontLigatures": false,
"editor.renderWhitespace": "boundary",
"editor.wordWrap": "on",
"editor.wrappingIndent": "indent",
"editor.rulers": [
100,
120
],
"editor.formatOnSave": true,
"git.autofetch": true,
"git.confirmSync": false,
"git.postCommitCommand": "none",
"python.formatting.provider": "black",
"python.languageServer": "Microsoft",
"python.linting.pylintEnabled": false,
"python.linting.pylintPath": "pylint",
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"code-runner.runInTerminal": true,
"code-runner.executorMap": {
"javascript": "node",
"php": "php",
"python": "$pythonPath -u $fullFileName",
"perl": "perl",
"ruby": "ruby",
"go": "go run",
"html": "\"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe\"",
"java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"cpp": "cd $dir && g++ -std=c++14 $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt"
},
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
}
|