Skip to content

Instantly share code, notes, and snippets.

@mischah
Last active December 11, 2020 10:06
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save mischah/2b8413e09b565d8c388d1fd92de9151b to your computer and use it in GitHub Desktop.
Current visual studio code settings
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "cmd+shift+t", "command": "workbench.action.terminal.toggleTerminal" },
{ "key": "cmd+shift+7", "command": "editor.action.commentLine",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "cmd+alt+shift+7", "command": "editor.action.blockComment",
"when": "editorFocus" },
{ "key": "ctrl+s", "command": "workbench.action.toggleSidebarVisibility" }
]
// Place your settings in this file to overwrite the default settings
{
// Editor
// Controls the font family.
"editor.fontFamily": "SourceCodePro-regular",
// Controls the font size in pixels.
"editor.fontSize": 14,
// Controls how the editor should render whitespace characters, posibilties are 'none', 'boundary', and 'all'. The 'boundary' option does not render single spaces between words.
"editor.renderWhitespace": "boundary",
// External Terminal
// Customizes which terminal application to run on OS X.
"terminal.external.osxExec": "iTerm.app",
// Integrated Terminal
// Controls the font family of the terminal, this defaults to editor.fontFamily's value.
"terminal.integrated.fontFamily": "Source Code Pro for Powerline",
// Controls the line height of the terminal, this number is multipled by the terminal font size to get the actual line-height in pixels.
"terminal.integrated.lineHeight": 1.5,
// Files
// Configure glob patterns for excluding files and folders.
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/server": true
},
// Search
// Configure glob patterns for excluding files and folders in searches. Inherits all glob patterns from the files.exclude setting.
"search.exclude": {
"**/libs": true,
"**/bower_components": true,
"**/node_modules": true
},
// Window
// Adjust the zoom level of the window. The original size is 0 and each increment above (e.g. 1) or below (e.g. -1) represents zooming 20% larger or smaller. You can also enter decimals to adjust the zoom level with a finer granularity.
"window.zoomLevel": 0.1,
// File Explorer
// Number of editors shown in the Open Editors pane. Set it to 0 to hide the pane.
"explorer.openEditors.visible": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment