VSCode workspace setting for text writing
{ | |
// See http://go.microsoft.com/fwlink/?LinkId=827846 | |
// for the documentation about the extensions.json format | |
"recommendations": [ | |
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp | |
"visualstudioexptteam.vscodeintellicode", | |
// Japanese | |
"MS-CEINTL.vscode-language-pack-ja", | |
"ICS.japanese-proofreading", | |
// Theme | |
"equinusocio.vsc-material-theme", | |
"robertohuertasm.vscode-icons", | |
"s-nlf-fh.glassit", | |
"wayou.vscode-todo-highlight", | |
"coenraads.bracket-pair-colorizer", | |
// Docker | |
"PeterJausovec.vscode-docker", | |
// Azure | |
"ms-azuretools.vscode-azureappservice", | |
// CSV | |
"mechatroner.rainbow-csv", | |
// Markdown | |
"vstirbu.vscode-mermaid-preview", | |
// Ruby | |
"rebornix.Ruby" | |
] | |
} |
body { background: #ddd; } | |
pre { background: #111; } | |
h1,h2,h3,h4,h5,h6,p,li { | |
font-family: "Yu Mincho","游明朝"; | |
color: #333; | |
} |
// $ git clone https://gist.github.com/12b376c844a4f72f89ab94df83a75ea5.git .vscode | |
// overwrite https://github.com/s2terminal/visualstudiocode-usersetting | |
{ | |
"markdown.styles": [".vscode/markdown.css"], | |
"editor.wordWrap": "on", | |
"workbench.colorTheme": "Abyss", | |
"[markdown]": { | |
"editor.lineHeight": 16, | |
"editor.fontSize": 13, | |
"editor.fontFamily": "YuMincho, 游明朝" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment