Skip to content

Instantly share code, notes, and snippets.

@upvalue
Last active July 2, 2017 03:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save upvalue/30163b5291b6079f601a438763142a7e to your computer and use it in GitHub Desktop.
Save upvalue/30163b5291b6079f601a438763142a7e to your computer and use it in GitHub Desktop.
vscode settings
// settings.json - VSCode settings
{
"editor.fontSize": 12,
"editor.lineNumbers": "relative",
"workbench.colorTheme": "Zenburn",
"window.menuBarVisibility": "toggle",
"typescript.check.tscVersion": false,
"editor.tabSize": 2,
"editor.renderWhitespace": "boundary",
"editor.rulers": [100],
"editor.minimap.enabled": false,
// Plugin specific
"vim.disableAnnoyingNeovimMessage": true,
"vim.hlsearch": true,
"vim.textwidth": 100,
// Language-specific
"eslint.options": {
"configFile": "/home/me/.eslintrc.json"
},
"eslint._legacyModuleResolve": true,
"eslint.nodePath": "/usr/local/share/.config/yarn/global/node_modules/",
"rust.rls": {
"executable": "cargo",
"args": ["run", "nightly", "rls"]
},
"window.zoomLevel": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment