odiak.net

MarkdownノートのためのVSCodeの設定

作成:
更新:

Google DriveとVS Codeでノートをとる話に関連して、
ノートをとるためのVSCodeの設定について書いてみる。

{
    // 自動保存
    "files.autoSave": "afterDelay",

    // ファイルのソートを更新日順に
    "explorer.sortOrder": "modified",

    // Markdownの改行設定
    "markdown.preview.breaks": true,

    // テーマは新しいハイコントラストのやつを使ってみている
    "workbench.colorTheme": "Light High Contrast",
    // アイコンテーマはシンプルなやつ
    "workbench.iconTheme": "vs-minimal",
    // 色のカスタマイズ (ノートのウインドウを他のワークスペースと見分けやすくするため)
    "workbench.colorCustomizations": {
        "statusBar.background": "#136e07",
        "statusBar.foreground": "#ffffff"
    },

    // 製作中のWiki機能拡張を有効にする
    "vscode-wiki.enabled": true,

    // Google Drive上のディレクトリなので、ゴミ箱を無効にしておく
    "files.enableTrash": false,

    // 行番号は非表示
    "editor.lineNumbers": "off",
    // インデントレベルのガイドも非表示
    "editor.guides.indentation": false,
    // ホワイトスペースは末尾だけ表示
    "editor.renderWhitespace": "trailing"
}

見た目はこんな感じ
Imgur