Last active
July 2, 2017 03:19
-
-
Save upvalue/30163b5291b6079f601a438763142a7e to your computer and use it in GitHub Desktop.
vscode settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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