Skip to content

Instantly share code, notes, and snippets.

@kamitom
Forked from doggy8088/settings.json
Created October 29, 2018 04:47
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 kamitom/e7e1cdf1874e9c17a69df3c710bd6254 to your computer and use it in GitHub Desktop.
Save kamitom/e7e1cdf1874e9c17a69df3c710bd6254 to your computer and use it in GitHub Desktop.
Will 保哥的 VSCode 使用者設定檔
{
"explorer.openEditors.visible": 0,
"workbench.colorTheme": "Default Light+",
"workbench.iconTheme": "vscode-simpler-icons",
"workbench.sideBar.location": "right",
// 需下載安裝 Fira Code 字型 (安裝 OTF 格式)
// https://github.com/tonsky/FiraCode/releases
// 需下載客製化過的 Microsoft YaHei Mono 字型
// https://github.com/doggy8088/MicrosoftYaHeiMono-CP950
"editor.fontFamily": "'Fira Code', 'Microsoft YaHei Mono', Consolas, 'Courier New', monospace",
// 要啟用連體字型(Fira Code)必須將以下設定打開
"editor.fontLigatures": true,
"editor.renderIndentGuides": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.minimap.enabled": false,
"editor.minimap.renderCharacters": false,
"editor.formatOnSave": false,
"editor.wordWrap": "on",
"prettier.singleQuote": true,
"typescript.referencesCodeLens.enabled": false,
"typescript.updateImportsOnFileMove.enabled": "always",
"tslint.enable": true,
"tslint.autoFixOnSave": true,
"movets.skipWarning": true,
"html.suggest.angular1": false,
"html.suggest.ionic": false,
"[html]": {
"editor.autoIndent": false
},
"csharp.format.enable": false,
"csharpfixformat.style.enabled": true,
"csharpfixformat.style.spaces.beforeParenthesis": false,
"csharpfixformat.style.braces.onSameLine": false,
"csharpfixformat.style.newline.elseCatch": true,
"git.autofetch": true,
"git.enableCommitSigning": false,
"git.enableSmartCommit": true,
"git.confirmSync": false,
"files.associations": {
"*.csproj": "msbuild"
},
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe",
"terminal.integrated.experimentalTextureCachingStrategy": "dynamic",
"auto-rename-tag.activationOnLanguage": [
"html",
"xml",
"php"
],
"liveServer.settings.donotShowInfoMsg": true,
"liveServer.settings.donotVerifyTags": true,
"todohighlight.include": [
"**/*.js",
"**/*.jsx",
"**/*.ts",
"**/*.tsx",
"**/*.html",
"**/*.php",
"**/*.css",
"**/*.scss",
"**/*.cs"
],
"docker.languageserver.diagnostics.instructionJSONInSingleQuotes": "warning"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment