Last active
May 2, 2023 10:53
-
-
Save fujimaki-k/823c954f00d37ceccf21579a90b93e8e to your computer and use it in GitHub Desktop.
VSCode stings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.fontWeight": "normal", | |
// Controls the font size. | |
"editor.fontSize": 16, | |
// Controls the line height. Use 0 to compute the lineHeight from the fontSize. | |
"editor.lineHeight": 0, | |
// Controls the display of line numbers. Possible values are 'on', 'off', and 'relative'. 'relative' shows the line count from the current cursor position. | |
"editor.lineNumbers": "on", | |
// Controls if the minimap is shown | |
"editor.minimap.enabled": true, | |
// Controls whether the editor should render whitespace characters | |
"editor.renderWhitespace": "all", | |
// Controls whether the editor should render control characters | |
"editor.renderControlCharacters": true, | |
// Controls visibility of the glyph margin | |
"editor.glyphMargin": false, | |
// Git | |
// Is git enabled | |
"git.enabled": false, | |
// HTML | |
// Maximum amount of characters per line (0 = disable). | |
"html.format.wrapLineLength": 0, | |
// Indent <head> and <body> sections. | |
"html.format.indentInnerHtml": true, | |
// End with a newline. | |
"html.format.endWithNewline": true, | |
"python.pythonPath": "/usr/local/bin/python3", | |
"workbench.startupEditor": "newUntitledFile", | |
"files.trimFinalNewlines": true, | |
"files.trimTrailingWhitespace": true, | |
"trailing-spaces.trimOnSave": true, | |
"go.formatTool": "goimports", | |
"window.zoomLevel": 0, | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.colorTheme": "Ayu Light", | |
"files.defaultLanguage": "markdown", | |
"editor.fontFamily": "\"VL Gothic\", \"VL NF\"", | |
"workbench.editorAssociations": { | |
"*.ipynb": "jupyter.notebook.ipynb" | |
}, | |
"tabnine.experimentalAutoImports": true, | |
"security.workspace.trust.untrustedFiles": "open", | |
"editor.guides.indentation": true, | |
"editor.unicodeHighlight.nonBasicASCII": false, | |
"editor.linkedEditing": true, | |
"japanese-proofreading.textlint.全角文字と半角文字の間": false, | |
"redhat.telemetry.enabled": false, | |
"terminal.integrated.env.osx": { | |
"FIG_NEW_SESSION": "1" | |
}, | |
"editor.accessibilitySupport": "off", | |
"window.nativeTabs": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment