Skip to content

Instantly share code, notes, and snippets.

@xuefeng-huang
Last active September 25, 2018 03:53
Show Gist options
  • Save xuefeng-huang/7b5eee3294c2590c7511da7fb0a96ec9 to your computer and use it in GitHub Desktop.
Save xuefeng-huang/7b5eee3294c2590c7511da7fb0a96ec9 to your computer and use it in GitHub Desktop.
vscode user setting
// 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": "Monaco",
"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,
"terminal.integrated.shell.osx": "/bin/zsh"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment