Skip to content

Instantly share code, notes, and snippets.

@ds300
Created June 4, 2023 14:28
Show Gist options
  • Save ds300/0127b48dd3450edaefb17377da2e72d3 to your computer and use it in GitHub Desktop.
Save ds300/0127b48dd3450edaefb17377da2e72d3 to your computer and use it in GitHub Desktop.
{
"vim.easymotion": true,
"vim.leader": "<space>",
"files.autoSave": "afterDelay",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": ["source.addMissingImports"],
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "g"],
"commands": ["editor.action.smartSelect.grow"]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "g"],
"commands": ["editor.action.revealDefinition"]
},
{
"before": ["<leader>", "r"],
"commands": ["editor.action.goToReferences"]
},
{
"before": ["<leader>", "p", "p"],
"commands": ["editor.action.marker.prev"]
},
{
"before": ["<leader>", "p", "n"],
"commands": ["editor.action.marker.next"]
},
{
"before": ["<leader>", "c", "p"],
"commands": ["workbench.action.editor.previousChange"]
},
{
"before": ["<leader>", "c", "n"],
"commands": ["workbench.action.editor.nextChange"]
},
{
"before": ["<leader>", "s", "r"],
"commands": ["editor.action.rename"]
},
{
"before": ["<leader>", "i", "s"],
"after": ["a"],
"commands": ["editor.action.insertSnippet"]
},
{
"before": ["<leader>", "f", "f"],
"commands": ["editor.action.quickFix"]
}
],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": false,
"markdown": true,
"scminput": false
},
"editor.inlineSuggest.enabled": true,
"debug.javascript.autoAttachFilter": "onlyWithFlag",
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.snippetSuggestions": "none",
"editor.tabSize": 2,
"git.allowNoVerifyCommit": true,
"githubPullRequests.pullBranch": "never",
"git.confirmSync": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"git.mergeEditor": false,
"githubPullRequests.terminalLinksHandler": "github",
"gitlens.views.remotes.branches.layout": "list",
"terminal.integrated.scrollback": 10000,
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml"
},
"cSpell.enabled": true,
"cSpell.enableFiletypes": ["mdx"],
"cSpell.userWords": [
"bbox",
"birthdate",
"crios",
"decapitalize",
"EASINGS",
"fontface",
"hella",
"iframes",
"isequal",
"kleur",
"lazyrepo",
"picocolors",
"potpack",
"prepopulated",
"queueify",
"Reparent",
"reparented",
"shapeutils",
"signia",
"sindresorhus",
"slugishness",
"Statechart",
"substep",
"testid",
"TLDOCUMENT",
"tldr",
"tldraw",
"TLINSTANCE",
"TLPOINTER",
"tlschema",
"tlstore",
"TLSYNC",
"tlvalidate",
"Undos",
"ungroup",
"ungrouping"
],
"diffEditor.ignoreTrimWhitespace": false,
"editor.minimap.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment