-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
147 lines (147 loc) · 4.49 KB
/
settings.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"files.autoSave": "afterDelay",
"files.eol": "\n",
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\wsl.exe",
//C:\\WINDOWS\\System32\\wsl.exe
"C_Cpp.updateChannel": "Insiders",
"remote.SSH.remotePlatform": {
"raspberrypi.local": "linux",
"118.27.32.204": "linux",
"rcc.ritsumei.ac.jp": "linux"
},
"terminal.integrated.shell.linux": "/bin/bash",
// /bin/bash
"[csharp]": {
"editor.defaultFormatter": "Leopotam.csharpfixformat"
},
"json.schemas": [],
"editor.formatOnType": true, /*空白を自動で開けるやつ*/
"editor.formatOnSave": true,
"C_Cpp.clang_format_style": "{BasedOnStyle: Google, IndentWidth: 4}",
"rust-client.engine": "rust-analyzer",
"[jsonc]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace"
},
"runner.languageMap": {
"haskell": "%userprofile%/vsc_config/run_hs.bat"
},
"python.linting.pylintArgs": [
"--extension-pkg-whitelist=cv2"
],
// ---------- Language ----------
"[tex]": {
// スニペット補完中にも補完を使えるようにする
"editor.suggest.snippetsPreventQuickSuggestions": false,
// インデント幅を2にする
"editor.tabSize": 2
},
"[latex]": {
// スニペット補完中にも補完を使えるようにする
"editor.suggest.snippetsPreventQuickSuggestions": false,
// インデント幅を2にする
"editor.tabSize": 2
},
"[bibtex]": {
// インデント幅を2にする
"editor.tabSize": 2
},
// ---------- LaTeX Workshop ----------
// 使用パッケージのコマンドや環境の補完を有効にする
"latex-workshop.intellisense.package.enabled": true,
// 生成ファイルを削除するときに対象とするファイル
// デフォルト値に "*.synctex.gz" を追加
"latex-workshop.latex.clean.fileTypes": [
"*.aux",
"*.bbl",
"*.blg",
"*.idx",
"*.ind",
"*.lof",
"*.lot",
"*.out",
"*.toc",
"*.acn",
"*.acr",
"*.alg",
"*.glg",
"*.glo",
"*.gls",
"*.ist",
"*.fls",
"*.log",
"*.fdb_latexmk",
"*.snm",
"*.nav",
"*.dvi",
"*.synctex.gz"
],
// 生成ファイルを "out" ディレクトリに吐き出す
//"latex-workshop.latex.outDir": "out",
// ビルドのレシピ
"extensions.autoUpdate": false, //今回の原因となった自動アプデをしない
"latex-workshop.latex.recipes": [
{
"name": "ptex2pdf",
"tools": [
"ptex2pdf" //タイプセットに使うtoolの名前
]
}
],
"latex-workshop.latex.tools": [ //タイプセットに使うtool一覧
{
"name": "latexmk",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"%DOC%"
]
},
{
"name": "ptex2pdf", //ptex2pdf自体の設定はこれまでと一緒
"command": "ptex2pdf",
"args": [
"-interaction=nonstopmode",
"-l",
"-ot",
"-kanji=utf8 -synctex=1",
"%DOC%"
]
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"-interaction=nonstopmode",
"%DOCFILE%"
]
}
],
"latex-workshop.view.pdf.viewer": "tab",
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"workbench.iconTheme": "vscode-icons",
"vsicons.dontShowNewVersionMessage": true,
"workbench.colorTheme": "Default Dark+",
"editor.fontLigatures": null,
"git.ignoreLegacyWarning": true,
"java.home": "C:\\Program Files\\Java\\jdk-15.0.2",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"terminal.integrated.shellArgs.windows": [
"-d",
"Ubuntu-20.04 (既定)"
],
"latex-workshop.message.update.show": false
}