Skip to content

Instantly share code, notes, and snippets.

@ristomatti
Last active February 11, 2017 19:33
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 ristomatti/3780bef934dff47d3ea87e71ca1f0e83 to your computer and use it in GitHub Desktop.
Save ristomatti/3780bef934dff47d3ea87e71ca1f0e83 to your computer and use it in GitHub Desktop.
Visual Studio Code settings
{
// General
"window.zoomLevel": 0,
"extensions.autoUpdate": true,
// Workbench
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.sideBar.location": "left",
"workbench.activityBar.visible": false,
"workbench.statusBar.visible": true,
// Editor
"editor.fontSize": 15,
"editor.lineHeight": 19,
// "editor.fontFamily": "Cousine for Powerline",
"editor.fontFamily": "DejaVu Sans Mono",
"editor.mouseWheelScrollSensitivity": 2,
"editor.folding": true,
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"editor.lineNumbers": "off",
"editor.parameterHints": true,
"editor.glyphMargin": false,
"editor.renderIndentGuides": false,
"editor.tabSize": 2,
"editor.wordWrap": false,
"editor.wrappingIndent": "same",
"editor.wrappingColumn": 120,
"editor.detectIndentation": true,
"editor.rulers": [
120
],
// Editor suggestions
"editor.selectionHighlight": true,
"editor.acceptSuggestionOnEnter": true,
"editor.suggestOnTriggerCharacters": true,
"editor.snippetSuggestions": "top",
// Files
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 10000,
"files.trimTrailingWhitespace": true,
"files.associations": {
"*.jsp": "html",
"*.tag": "html",
"*.htmlbeautify": "json",
"*.jsbeautify": "json",
"*.tdesktop-theme": "sass"
},
// Exclude from file watching
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/node_modules/**": false
},
// Exclude from explorer & search
"files.exclude": {
"**/.class": true,
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.history": true,
"**/.idea": true,
"**/.jar": true,
"**/.settings": true,
"**/.svn": true,
"**/.war": true
},
// Exclude from search
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/typings": true
},
// TypeScript
"typescript.useCodeSnippetsOnMethodSuggest": true,
"typescript.tsdk": "/usr/lib/node_modules/typescript/lib",
// Extensions
// REST client
"rest-client.enableTelemetry": false,
// Document This
"docthis.includeMemberOfOnClassMembers": false,
"docthis.enableJumpToDescriptionLocation": true,
"docthis.includeMemberOfOnInterfaceMembers": false,
// CSSComb
"window.menuBarVisibility": "toggle",
// Auto close tags
"auto-close-tag.activationOnLanguage": [
"html",
"xml",
"ts",
"tmTheme"
],
// Code Ace Jumper
"aceJump.placeholder.backgroundColor": "#880000",
"aceJump.placeholder.color": "#eee8d5", // foreground color; defaults to black
"aceJump.placeholder.border": "dotted thin black",
"aceJump.placeholder.width": 21, // width; defaults to 12
"aceJump.placeholder.height": 21, // height; defaults to 14
"aceJump.placeholder.fontSize": 16, // font size; defaults to 14
"aceJump.placeholder.textPosX": 5, // text X position; defaults to 2
"aceJump.placeholder.textPosY": 15, // text Y position; defaults to 12
"aceJump.placeholder.fontWeight": "normal", // font weight; defaults to normal
"aceJump.placeholder.fontFamily": "DejaVu Sans Mono", // font family; defaults to Consolas
"aceJump.placeholder.upperCase": false, // font to uppercase; defaults to false
"aceJump.finder.pattern": "[\n ,-.{_(\\[]",
"aceJump.finder.range": 30
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment