VSCode workspace setting for text writing
This file contains 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
body { | |
font-family: "YuMincho", "游明朝", "serif"; | |
background-color: #fff; | |
color: #000; | |
} |
This file contains 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
// $ git clone https://gist.github.com/12b376c844a4f72f89ab94df83a75ea5.git .vscode | |
{ | |
"editor.wordWrap": "on", | |
"workbench.colorTheme": "Default Dark+", | |
"[markdown]": { | |
// "editor.lineHeight": 16, | |
// "editor.fontSize": 13, | |
"editor.fontFamily": "YuMincho, 游明朝" | |
}, | |
"markdown.styles": [".vscode/markdown.css"], | |
"markdown-pdf.styles": [".vscode/markdown.css"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment