Skip to content

Instantly share code, notes, and snippets.

@f-ttok
Last active March 28, 2020 09:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save f-ttok/e3eb1a08bea3c41dade456bc8a147c9f to your computer and use it in GitHub Desktop.
Save f-ttok/e3eb1a08bea3c41dade456bc8a147c9f to your computer and use it in GitHub Desktop.
Setting for VS Code.
{
"editor.fontFamily": "'Consolas', 'メイリオ', monospace",
"editor.cursorStyle": "line",
"files.exclude": {
"**/*.out": true
},
"editor.autoClosingBrackets": "always",
"editor.autoClosingQuotes": "always",
"editor.wordWrap": "on",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment", "comment.block", "comment.block.documentation", "comment.line", "constant", "constant.character", "constant.character.escape", "constant.numeric", "constant.numeric.integer", "constant.numeric.float", "constant.numeric.hex", "constant.numeric.octal", "constant.other", "constant.regexp", "constant.rgb-value", "emphasis", "entity", "entity.name", "entity.name.class", "entity.name.function", "entity.name.method", "entity.name.section", "entity.name.selector", "entity.name.tag", "entity.name.type", "entity.other", "entity.other.attribute-name", "entity.other.inherited-class", "invalid", "invalid.deprecated", "invalid.illegal", "keyword", "keyword.control", "keyword.operator", "keyword.operator.new", "keyword.operator.assignment", "keyword.operator.arithmetic", "keyword.operator.logical", "keyword.other", "markup", "markup.bold", "markup.changed", "markup.deleted", "markup.heading", "markup.inline.raw", "markup.inserted", "markup.italic", "markup.list", "markup.list.numbered", "markup.list.unnumbered", "markup.other", "markup.quote", "markup.raw", "markup.underline", "markup.underline.link", "meta", "meta.block", "meta.cast", "meta.class", "meta.function", "meta.function-call", "meta.preprocessor", "meta.return-type", "meta.selector", "meta.tag", "meta.type.annotation", "meta.type", "punctuation.definition.string.begin", "punctuation.definition.string.end", "punctuation.separator", "punctuation.separator.continuation", "punctuation.terminator", "storage", "storage.modifier", "storage.type", "string", "string.interpolated", "string.other", "string.quoted", "string.quoted.double", "string.quoted.other", "string.quoted.single", "string.quoted.triple", "string.regexp", "string.unquoted", "strong", "support", "support.class", "support.constant", "support.function", "support.other", "support.type", "support.type.property-name", "support.variable", "variable", "variable.language", "variable.name", "variable.other", "variable.other.readwrite", "variable.parameter"
],
"settings": {
"fontStyle": ""
}
}
]
},
"editor.detectIndentation": false,
"editor.snippetSuggestions": "top",
"workbench.colorCustomizations": {
"statusBar.background": "#222222", // 下の方のバーの色
"statusBar.noFolderBackground": "#222222",
"statusBar.debuggingBackground": "#222222"
},
"window.zoomLevel": 0,
"terminal.integrated.fontFamily": "\"Consolas\"",
// ----- LaTeXの設定 -----
"[latex]": {
"editor.formatOnPaste": false,
"editor.formatOnSave": false,
"editor.tabSize": 2,
},
"latex-workshop.latex.tools": [
{
"name": "latexmk",
"command": "latexmk",
"args": [
"-output-directory=output",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
},
],
"latex-workshop.hover.preview.enabled": false,
"latex-workshop.hover.preview.cursor.enabled": false,
"latex-workshop.view.pdf.viewer": "external",
"latex-workshop.latex.autoBuild.run": "never",
"[python]": {
"editor.tabSize": 4
},
"python.formatting.provider": "yapf",
"python.dataScience.sendSelectionToInteractiveWindow": true,
"git.enableSmartCommit": true,
"markdown.preview.scrollEditorWithPreview": false,
"markdown.preview.scrollPreviewWithEditor": false,
"markdown.preview.markEditorSelection": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment