Skip to content

Instantly share code, notes, and snippets.

@brennancheung
Created March 8, 2020 18:34
Show Gist options
  • Save brennancheung/2bc5b435c9427eb1c1b6b8c05d6f7324 to your computer and use it in GitHub Desktop.
Save brennancheung/2bc5b435c9427eb1c1b6b8c05d6f7324 to your computer and use it in GitHub Desktop.
{
"workbench.sideBar.location": "left",
"editor.fontFamily": "'DejaVu Sans Mono for Powerline'",
"editor.fontSize": 14,
"editor.tabSize": 4,
"workbench.colorTheme": "Darktooth",
"editor.minimap.enabled": false,
"window.zoomLevel": 2,
"window.openFilesInNewWindow": "off",
"workbench.statusBar.visible": true,
"editor.acceptSuggestionOnEnter": false,
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.quickSuggestionsDelay": 500,
"multiCommand.commands": [
{
"command": "multiCommand.commentAndDown",
"sequence": [
"editor.action.commentLine",
"cursorDown"
]
},
],
"vim.cmdLineInitialColon": true,
"vim.hlsearch": true,
"vim.leader": "<space>",
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [
"<C-n>"
],
"commands": [
{
"command": "workbench.view.explorer"
},
]
},
{
"before": [
"<leader>",
"<leader>"
],
"commands": [
{
"command": "workbench.action.quickOpen"
},
]
},
{
"before": [
"<leader>",
"e"
],
"commands": [
{
"command": "workbench.actions.view.problems"
},
]
},
{
"before": [
"<leader>",
"t"
],
"commands": [
{
"command": "workbench.action.terminal.focus"
},
]
},
],
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"gitlens.codeLens.enabled": false,
"gitlens.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"gitlens.hovers.enabled": false,
"explorer.confirmDragAndDrop": false,
"workbench.startupEditor": "newUntitledFile",
"editor.renderWhitespace": "boundary",
"workbench.activityBar.visible": true,
"[go]": {},
"workbench.tree.indent": 24,
"editor.wordWrap": "on",
"editor.wordWrapColumn": 120,
"[csharp]": {
"editor.tabSize": 4,
},
"[javascript]": {
"editor.tabSize": 2,
},
"[javascriptreact]": {
"editor.tabSize": 2,
},
"[typescript]": {
"editor.tabSize": 2,
"editor.formatOnSave": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"[typescriptreact]": {
"editor.tabSize": 2,
"editor.formatOnSave": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true
},
"[rust]": {
"editor.formatOnSave": false,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment