Skip to content

Instantly share code, notes, and snippets.

@YusukeHirao
Last active May 22, 2018 00:37
Show Gist options
  • Save YusukeHirao/c17867532cfcca70f158f627bddd49cf to your computer and use it in GitHub Desktop.
Save YusukeHirao/c17867532cfcca70f158f627bddd49cf to your computer and use it in GitHub Desktop.
VS Code
// Place your settings in this file to overwrite the default settings
{
// エディター
// フォント ファミリを制御します。
"editor.fontFamily": "Fira Code",
// "editor.fontFamily": "Ricty Diminished",
"editor.fontLigatures": true,
// フォント サイズをピクセル単位で制御します。
"editor.fontSize": 14,
// 行の高さを制御します。fontSize に基づいて lineHeight を計算する場合には、0 を使用します。
"editor.lineHeight": 20,
// エディターで空白文字を表示する方法を制御します。'none'、'boundary' および 'all' が使用可能です。'boundary' オプションでは、単語間の単一スペースは表示されません。
"editor.renderWhitespace": "all",
// Tab キーを押すとスペースが挿入されます。`editor.detectIndentation` がオンの場合、この設定はファイル コンテンツに基づいて上書きされます。
"editor.insertSpaces": false,
// 単語に関連したナビゲーションまたは操作を実行するときに、単語の区切り文字として使用される文字
"editor.wordSeparators": "`~!@#%^&*()=+[{]}\\|;:'\",.<>/?",
// エディターで入力後に自動的に行の書式設定を行うかどうかを制御します
"editor.formatOnType": false,
// 貼り付けた内容がエディターにより自動的にフォーマットされるかどうかを制御します。フォーマッタを使用可能にする必要があります。また、フォーマッタがドキュメント内の範囲をフォーマットできなければなりません。
"editor.formatOnPaste": true,
// ファイルを保存するときにフォーマットしてください。フォーマッタを使用可能にして、ファイルを自動保存せず、エディターをシャットダウンしないでください。
"editor.formatOnSave": false,
// エディターで制御文字を表示する必要があるかどうかを制御します
"editor.renderControlCharacters": true,
// ファイル
// 有効にすると、ファイルの保存時に末尾の空白をトリミングします。
"files.trimTrailingWhitespace": true,
// HTML
"html.format.enable": false,
// SCSS
// Controls SCSS validation and problem severities.
// Enables or disables all validations
"scss.validate": false,
// TypeScript
// 使用する tsserver と lib*.d.ts ファイルが含まれているフォルダーのパスを指定します。
// "typescript.tsdk": "./node_modules/typescript/lib/"
// パラメーター シグネチャを含む完全な関数。
"typescript.useCodeSnippetsOnMethodSuggest": false,
"window.zoomLevel": -1,
"editor.wordWrap": "off",
"workbench.colorTheme": "Monokai",
"workbench.iconTheme": "vs-seti",
"typescript.check.npmIsInstalled": false,
"git.confirmSync": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"workbench.startupEditor": "newUntitledFile",
// Prettier
"git.autofetch": true,
// Live Share
"liveshare.guestApprovalRequired": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment