willwm
9/1/2017 - 5:41 AM

Visual Studio Code Settings

Visual Studio Code Settings

{
    // Editor
    "editor.fontFamily": "'Fira Code Retina'",
    "editor.fontSize": 12,
    "editor.fontLigatures": true,
    "editor.renderWhitespace": "all",

    // Terminal
    "terminal.integrated.fontSize": 12,
    "terminal.integrated.scrollback": 3500,

    // Workbench
    "workbench.iconTheme": "material-icon-theme",

    // Window
    "window.menuBarVisibility": "toggle",

    // Git
    "git.confirmSync": false,
    "git.autofetch": true,
    "git.enableSmartCommit": true,

    // Explorer
    "explorer.confirmDelete": false,

    // Extension: Docker
    "docker.showExplorer": false,

    // Extension: GitLens
    "gitlens.advanced.messages": {
        "suppressCommitHasNoPreviousCommitWarning": false,
        "suppressCommitNotFoundWarning": false,
        "suppressFileNotUnderSourceControlWarning": false,
        "suppressGitVersionWarning": false,
        "suppressLineUncommittedWarning": false,
        "suppressNoRepositoryWarning": false,
        "suppressResultsExplorerNotice": false,
        "suppressUpdateNotice": false,
        "suppressWelcomeNotice": true
    },
    "gitlens.gitExplorer.files.layout": "auto",

    // Extension: Material Icon Theme
    "material-icon-theme.showUpdateMessage": false,
    "material-icon-theme.showWelcomeMessage": false,

    // Extension: Project Manager
    "projectManager.treeview.visible": false,
}