Skip to content

Instantly share code, notes, and snippets.

@dwatanabee
Last active June 27, 2022 06:06
Show Gist options
  • Save dwatanabee/42331e5e2ffc9b3ca4d7e36b182105cd to your computer and use it in GitHub Desktop.
Save dwatanabee/42331e5e2ffc9b3ca4d7e36b182105cd to your computer and use it in GitHub Desktop.
{
//フォントや色の設定
"editor.fontSize": 16,
"terminal.integrated.fontSize": 14,
"editor.fontFamily": "Ricty Diminished",
//"Atom One Dark"で気に入らない部分を変更
"editor.tokenColorCustomizations": {
//変数
"variables": "#f8f8f8",
//if,for文など
"keywords": {
"fontStyle": "bold"
},
},
//tabの空欄の大きさ
"editor.tabSize": 2,
//texの設定
"latex-workshop.hover.preview.newcommand.parseTeXFile.enabled": true,
//自動アプデをしない
"extensions.autoUpdate": false,
//texのコンパイル設定
"latex-workshop.latex.recipes": [
{
"name": "ptex2pdf",
"tools": [
"ptex2pdf" //タイプセットに使うtoolの名前
]
},
{
"name": "bibtex",
"tools": [
"bibtex" //タイプセットに使うtoolの名前
]
}
],
"latex-workshop.latex.tools": [ //タイプセットに使うtool一覧
{
"name": "ptex2pdf",
"command": "ptex2pdf",
"args": [
"-l",
"-ot",
"-kanji=utf8 -synctex=1",
"%DOC%"
]
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOC%"
]
}
],
//保存時の自動ビルド
"latex-workshop.latex.autoBuild.run": "never",
//texのコンパイルpdfをどこに表示するか
"latex-workshop.view.pdf.viewer": "tab",
// サイドバーの位置
"workbench.sideBar.location": "left",
//VSCodeからの警告通知を無視しない
"extensions.ignoreRecommendations": false,
//ファイル削除時に確認しない
"explorer.confirmDelete": false,
//画面サイズは前回の大きさを引き継ぐ
"window.newWindowDimensions": "inherit",
// 空白文字列の表示
"editor.renderWhitespace": "boundary",
//新しいファイルは別タブで開く
"workbench.editor.enablePreview": false,
//Debug処理中にエラーが起きても続行
"debug.onTaskErrors": "debugAnyway",
//スペース部分の変更も無視しない
"diffEditor.ignoreTrimWhitespace": false,
//提案リストの最初の選択肢を選択
"editor.suggestSelection": "first",
//Visual Studio IntelliCodeの設定
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
//フォーマッタの起動
"editor.formatOnPaste": false,
"editor.formatOnSave": false,
"editor.formatOnType": false,
"editor.lightbulb.enabled": true,
"C_Cpp.default.compilerPath": "/usr/local/bin/g++",
"workbench.editor.untitled.hint": "hidden",
"C_Cpp.default.cppStandard": "gnu++14",
"terminal.integrated.tabs.enabled": true,
"terminal.integrated.defaultProfile.osx": "zsh",
"security.workspace.trust.untrustedFiles": "open",
"terminal.integrated.inheritEnv": false,
"workbench.colorTheme": "Atom One Dark",
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/vendor/**": true
},
"git.confirmSync": false,
"workbench.iconTheme": "material-icon-theme",
"git.ignoreLegacyWarning": true,
"workbench.startupEditor": "none",
"git.autofetch": true,
"explorer.confirmDragAndDrop": false,
"remote.SSH.connectTimeout": 60,
"[latex]": {
"editor.defaultFormatter": "James-Yu.latex-workshop",
},
"latex-workshop.latexindent.path": "/usr/local/bin/latexindent.pl",
"terminal.integrated.enableMultiLinePasteWarning": false,
"editor.bracketPairColorization.enabled": true,
"workbench.tree.renderIndentGuides": "always",
"workbench.colorCustomizations": {
"editorCursor.foreground": "#f858f07f",
"terminalCursor.foreground": "#f858f07f"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment