まだAtomで消耗してるの?

タイトルは釣りです。 ただそれをいってみたかっただけです。

Visual Studio Code(VSCode)、Atomより起動が速いし、なんかいい感じです。 まだつかってない大きなお友達のみんな、今日からつかってみよう!!

ユーザー設定

まだ乗り換え1週間くらいなので、ろくに整備してない。

Ricty Diminished を homebrew やらでインスコしよう。

{
    "workbench.startupEditor": "newUntitledFile",
    "editor.fontFamily": "'Ricty Diminished Discord', Menlo, Monaco, 'Courier New', monospace",
    "editor.fontSize": 14,
    "editor.renderWhitespace": "all",
    "editor.wordWrap": "bounded",
    "editor.wordWrapColumn": 140,
    "editor.renderLineHighlight": "all",
    "window.restoreWindows": "all",
    "files.trimTrailingWhitespace": true,
    "files.insertFinalNewline": true,
    "files.trimFinalNewlines": true,
    "atomKeymap.promptV3Features": true,
    "editor.multiCursorModifier": "ctrlCmd",
    "editor.formatOnPaste": true,
    "": {
        "editor.wordWrap": "on",
        "editor.quickSuggestions": true,
        "files.trimTrailingWhitespace": false,
    },
    "guides.enabled": false,
    "gitlens.advanced.messages": {
        "suppressCommitHasNoPreviousCommitWarning": false,
        "suppressCommitNotFoundWarning": false,
        "suppressFileNotUnderSourceControlWarning": false,
        "suppressGitVersionWarning": false,
        "suppressLineUncommittedWarning": false,
        "suppressNoRepositoryWarning": false,
        "suppressUpdateNotice": false,
        "suppressWelcomeNotice": true
    },
    "workbench.colorTheme": "One Monokai",
    "workbench.iconTheme": "material-icon-theme",
    "markJump.maximumLimit": -1,
    "markdown-toc.depthTo": 3,
    "trailing-spaces.regexp": "[ \t ]+"
}

ユーザースニペット (markdown用)

まだ乗り換え1週間くらいなので、ろくに整備してない。

{
    // Place your snippets for Markdown here. Each snippet is defined under a snippet name and has a prefix, body and
    // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
    // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
    // same ids are connected.
    // Example:
    "code": {
        "prefix": "code",
        "body": [
            "```",
            "$0",
            "```"
        ],
        "description": "code block"
    }
}

拡張機能

だいたいこんなん。

ほかは適当にネットの記事のものをバンバンぶち込めばおk。

参考: VSCodeの拡張機能 おすすめ(8/14更新) – Qiita