Skip to content

Instantly share code, notes, and snippets.

@xuefeng-huang
Last active September 25, 2018 03:53
Show Gist options
  • Select an option

  • Save xuefeng-huang/7b5eee3294c2590c7511da7fb0a96ec9 to your computer and use it in GitHub Desktop.

Select an option

Save xuefeng-huang/7b5eee3294c2590c7511da7fb0a96ec9 to your computer and use it in GitHub Desktop.

Revisions

  1. xuefeng-huang revised this gist Sep 25, 2018. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion settings.json
    Original file line number Diff line number Diff line change
    @@ -42,5 +42,6 @@
    },
    "telemetry.enableTelemetry": false,
    "terminal.integrated.rendererType": "dom",
    "breadcrumbs.enabled": true
    "breadcrumbs.enabled": true,
    "terminal.integrated.shell.osx": "/bin/zsh"
    }
  2. xuefeng-huang revised this gist Sep 25, 2018. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion settings.json
    Original file line number Diff line number Diff line change
    @@ -33,7 +33,7 @@
    },
    "window.title": "${activeEditorMedium}${separator}${rootName}",
    "editor.scrollBeyondLastLine": false,
    "terminal.integrated.fontFamily": "Inconsolata for Powerline",
    "terminal.integrated.fontFamily": "Monaco",
    "terminal.integrated.fontSize": 14,
    "window.zoomLevel": 0,
    "javascript.implicitProjectConfig.checkJs": true,
  3. xuefeng-huang created this gist Sep 17, 2018.
    46 changes: 46 additions & 0 deletions settings.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,46 @@
    // Place your settings in this file to overwrite the default settings
    {
    "editor.cursorBlinking": "solid",
    //for terminal to have the correct PATH variable
    "terminal.integrated.shellArgs.osx": [
    "-l"
    ],
    "editor.lineNumbers": "relative",
    "editor.renderIndentGuides": true,
    "editor.wordWrap": "on",
    "editor.rulers": [
    80
    ],
    //vim
    "vim.useSystemClipboard": true,
    "vim.searchHighlightColor": "rgba(18, 215, 18, 0.4)",
    "vim.hlsearch": true,
    "vim.disableAnnoyingNeovimMessage": true,
    "vim.disableAnnoyingGcMessage": true,
    "workbench.iconTheme": "vs-seti",
    "editor.minimap.enabled": false,
    //customization
    "workbench.colorCustomizations": {
    "editor.selectionHighlightBackground": "#c6e5f0b4",
    "editor.lineHighlightBackground": "#c43a3a"
    },
    "editor.formatOnSave": true,
    "[go]": {
    "editor.formatOnSave": true
    },
    "[php]": {
    "editor.formatOnSave": false
    },
    "window.title": "${activeEditorMedium}${separator}${rootName}",
    "editor.scrollBeyondLastLine": false,
    "terminal.integrated.fontFamily": "Inconsolata for Powerline",
    "terminal.integrated.fontSize": 14,
    "window.zoomLevel": 0,
    "javascript.implicitProjectConfig.checkJs": true,
    "vim.handleKeys": {
    "<C-d>": true
    },
    "telemetry.enableTelemetry": false,
    "terminal.integrated.rendererType": "dom",
    "breadcrumbs.enabled": true
    }