Created
February 22, 2017 18:57
-
-
Save tracker1/057da6153100180e0d1257f17f67d3eb to your computer and use it in GitHub Desktop.
My vscode user settings for OSX
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
{ | |
// Enable/disable JavaScript validation. | |
// using eslint plugin instead | |
"javascript.validate.enable": false, | |
"files.autoSave": "off", | |
"editor.tabSize": 2, | |
"editor.fontFamily": "Inconsolata, Menlo, Monaco, 'Courier New', monospace", | |
// Controls the font size in pixels. | |
"editor.fontSize": 15, | |
// Columns at which to show vertical rulers | |
"editor.rulers": [72, 80, 100], | |
// Controls the indentation of wrapped lines. Can be one of 'none', 'same' or 'indent'. | |
"editor.wrappingIndent": "indent", | |
// Controls the style of terminal cursor. | |
"terminal.integrated.cursorStyle": "underline", | |
// The command line arguments to use when on the OS X terminal. | |
"terminal.integrated.shellArgs.osx": ["--init-file", "~/.profile"], | |
// Controls the font family of the terminal, this defaults to editor.fontFamily's value. | |
"terminal.integrated.fontFamily": "Inconsolata, Menlo, Monaco, 'Courier New', monospace", | |
// Controls whether font ligatures are enabled in the terminal. | |
"terminal.integrated.fontLigatures": false, | |
// Controls the font size in pixels of the terminal. | |
"terminal.integrated.fontSize": 15, | |
// Controls whether the terminal cursor blinks. | |
"terminal.integrated.cursorBlinking": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment