Created
July 16, 2025 07:07
-
-
Save CUEICHI/94843ea3a03582ada8a0b9a54d78b953 to your computer and use it in GitHub Desktop.
for vscode setting / 0716
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
| { | |
| "editor.fontSize": 18, | |
| "editor.cursorStyle": "block", | |
| "editor.renderControlCharacters": true, | |
| "editor.unicodeHighlight.nonBasicASCII": false, | |
| "files.autoSave": "onFocusChange", | |
| "files.autoSaveDelay": 100, | |
| "latex-workshop.synctex.afterBuild.enabled": true, | |
| "latex-workshop.view.outline.sync.viewer": true, | |
| "latex-workshop.view.pdf.viewer": "tab", | |
| "latex-workshop.latex.tools": [ | |
| { | |
| "command": "latexmk", | |
| "args": [ | |
| "%DOC%" | |
| ], | |
| "name": "latexmk" | |
| } | |
| ], | |
| "latex-workshop.latex.recipes": [ | |
| { | |
| "name": "latexmk (latexmkrc)", | |
| "tools": [ | |
| "latexmk" | |
| ] | |
| }, | |
| ], | |
| "vsnotes.noteTitleConvertSpaces": " ", | |
| "vsnotes.defaultNoteTitle": "{dt}-{title}.{ext}", | |
| "vsnotes.defaultSnippet": { | |
| "langId": "markdown", | |
| "name": "vsnote_template_default" | |
| }, | |
| "vsnotes.tokens": [ | |
| { | |
| "type": "datetime", | |
| "token": "{dt}", | |
| "format": "YYYY-MM-DD", | |
| "description": "Insert formatted datetime." | |
| }, | |
| { | |
| "type": "title", | |
| "token": "{title}", | |
| "description": "Insert note title from input box.", | |
| "format": "Untitled" | |
| }, | |
| { | |
| "type": "extension", | |
| "token": "{ext}", | |
| "description": "Insert file extension.", | |
| "format": "md" | |
| } | |
| ], | |
| "vsnotes.templates": [ | |
| "default", | |
| "dialy", | |
| "blog", | |
| "mtg" | |
| ], | |
| "git.confirmSync": false, | |
| "workbench.editor.enablePreview": false, | |
| "vsnotes.defaultNotePath": "/Users/cue/Library/CloudStorage/GoogleDrive-hada.hisakazu@gmail.com/マイドライブ/notes", | |
| "editor.codeActionsOnSave": { | |
| }, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment