Last active
March 12, 2017 22:07
-
-
Save xaxim/bb6ce2f1c7f2c11b7d76729a4f7506a7 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
// Place your settings in this file to overwrite the default settings | |
{ | |
"vsicons.dontShowNewVersionMessage": true, | |
"editor.fontFamily": "Fira Code, Hasklig, OperatorMono Nerd Font, Inconsolata, Consolas, 'Courier New', monospace", | |
"editor.fontSize": 14, | |
"editor.fontLigatures": true, | |
"editor.tabSize": 2, | |
"editor.cursorBlinking": "phase", | |
"editor.cursorStyle": "line", | |
"editor.renderIndentGuides": true, | |
"editor.renderWhitespace": "none" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
// Place your settings in this file to overwrite the default settings
{
"vsicons.dontShowNewVersionMessage": true,
"editor.fontFamily": "Consolas, Fira Code, Hasklig, OperatorMono Nerd Font, Inconsolata, Consolas, 'Courier New', monospace",
"editor.fontSize": 14,
"editor.fontLigatures": true,
"editor.tabSize": 2,
"editor.cursorBlinking": "phase",
"editor.cursorStyle": "line",
"editor.renderIndentGuides": true,
"editor.renderWhitespace": "none",
"terminal.external.osxExec": "iTerm.app",
"eslint.nodePath": "/Users/xaxim/.config/yarn/global/node_modules",
"eslint.validate": [
"javascript",
"javascriptreact",
"html"
],
"vsicons.projectDetection.autoReload": true,
"files.associations": {
"*.js": "javascriptreact"
},
"terminal.integrated.fontLigatures": true,
"terminal.integrated.cursorBlinking": true,
"window.zoomLevel": 0,
"editor.wordWrap": true,
"workbench.welcome.enabled": false,
"workbench.colorTheme": "Solarized Light",
"workbench.iconTheme": "vscode-icons"
}