Skip to content

Instantly share code, notes, and snippets.

@Hotell
Created March 5, 2017 18:18
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 Hotell/5627d3ab8c48a4d48043316842ac74e7 to your computer and use it in GitHub Desktop.
Save Hotell/5627d3ab8c48a4d48043316842ac74e7 to your computer and use it in GitHub Desktop.
VSCode settings
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "cmd+n",
"command": "extension.createNewFile",
"when": "editorTextFocus"
},
{
"key": "ctrl+`",
"command": "workbench.action.terminal.focusNext",
"when": "!terminalFocus"
},
{
"key": "ctrl+`",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
}
]
// Place your settings in this file to overwrite the default settings
{
// "typescript.tsdk": "/usr/local/lib/node_modules/typescript/lib",
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.shellArgs.osx": ["-l"],
"terminal.integrated.fontSize": 14,
// Specifies the folder path containing the tsserver and lib*.d.ts files to use.
"typescript.tsdk": "./node_modules/typescript/lib",
"typescript.format.enable": true,
// Defines space handling after opening and before closing non empty parenthesis.
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": true,
// Defines space handling after opening and before closing non empty brackets.
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true,
// Defines space handling after opening and before closing template string braces. Requires TypeScript >= 2.0.6.
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": true,
// Defines space handling after opening and before closing JSX expression braces. Requires TypeScript >= 2.0.6.
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true,
// Defines space handling after opening and before closing non empty parenthesis.
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": true,
// Defines space handling after opening and before closing non empty brackets.
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true,
// Defines space handling after opening and before closing template string braces. Requires javascript >= 2.0.6.
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": true,
// Defines space handling after opening and before closing JSX expression braces. Requires TypeScript >= 2.0.6.
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true,
"tslint.enable": false,
"tslint.autoFixOnSave": true,
"eslint.enable": false,
"files.autoSave": "onFocusChange",
"files.exclude": {
"**/*.js": {
"when": "$(basename).ts"
},
"**/*.js.map": true
},
"files.trimTrailingWhitespace": true,
"editor.fontSize": 14,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.lineHeight": 22,
"editor.tabSize": 2,
"editor.formatOnSave": false,
"editor.rulers": [120],
"editor.minimap.enabled": true,
"editor.minimap.renderCharacters": false,
"workbench.editor.showTabs": false,
"window.zoomLevel": 0,
"vsicons.dontShowNewVersionMessage": true,
"vsicons.projectDetection.autoReload": true,
"typescript.referencesCodeLens.enabled": true,
"workbench.colorTheme": "Material Theme",
"workbench.iconTheme": "vscode-icons",
"extension-manager.extensions": [
"EditorConfig.EditorConfig",
"GregorBiswanger.json2ts",
"JerryHong.autofilename",
"PKief.material-icon-theme",
"RolandGreim.sharecode",
"TsumiNa.Seti-theme",
"abierbaum.vscode-file-peek",
"abotteram.typescript-react-snippets",
"alefragnani.Bookmarks",
"alefragnani.project-manager",
"ceps.theme-darcula",
"christian-kohler.npm-intellisense",
"christian-kohler.path-intellisense",
"codezombiech.gitignore",
"dkundel.vscode-new-file",
"donjayamanne.githistory",
"dracula-theme.theme-dracula",
"eamodio.gitlens",
"eg2.tslint",
"eg2.vscode-npm-script",
"flowtype.flow-for-vscode",
"jakob101.RelativePath",
"k--kato.intellij-idea-keybindings",
"letrieu.expand-region",
"maptz.camelcasenavigation",
"michelemelluso.gitignore",
"minhthai.vscode-todo-parser",
"pmneo.tsimporter",
"robertohuertasm.vscode-icons",
"rokoroku.vscode-theme-darcula",
"ryu1kn.annotator",
"steoates.autoimport",
"waderyan.gitblame",
"wayou.vscode-todo-highlight",
"webstp.extension-manager",
"xaver.clang-format",
"zhuangtongfa.Material-theme"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment