Skip to content

Instantly share code, notes, and snippets.

@damionvega
Created January 15, 2022 18:29
Show Gist options
  • Save damionvega/3f069515d4b3d81b393319434aeb0a19 to your computer and use it in GitHub Desktop.
Save damionvega/3f069515d4b3d81b393319434aeb0a19 to your computer and use it in GitHub Desktop.
VS Code Settings - 2022
{
"git.autofetch": true,
"terminal.integrated.fontSize": 13,
"editor.fontFamily": "Fira Code",
// "editor.fontFamily": "FiraCode-Retina",
"editor.fontLigatures": true,
"editor.maxTokenizationLineLength": 100000,
"editor.acceptSuggestionOnCommitCharacter": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"git.enableSmartCommit": true,
// "wrap-console-log-simple.useSemicolon": false,
"files.trimTrailingWhitespace": true,
"zenMode.hideTabs": false,
"git.confirmSync": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.tabSize": 2,
"editor.minimap.enabled": false,
"files.associations": {
"*.config": "yaml"
},
"editor.smoothScrolling": true,
"workbench.startupEditor": "newUntitledFile",
"editor.lineNumbers": "relative",
"typescript.updateImportsOnFileMove.enabled": "always",
"vim.useSystemClipboard": true,
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["n"],
"after": ["n", "z", "z"]
},
{
"before": ["<C-e>"],
"commands": [
{
"command": "editorScroll",
"args": {
"to": "down",
"by": "line",
"value": 10
}
}
]
},
{
"before": ["<C-y>"],
"commands": [
{
"command": "editorScroll",
"args": {
"to": "up",
"by": "line",
"value": 10
}
}
]
}
],
"vim.scroll": 20,
"vim.history": 10,
"stylusSupremacy.insertBraces": false,
"stylusSupremacy.insertColons": false,
"extensions.ignoreRecommendations": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"vetur.ignoreProjectWarning": true,
"editor.fontSize": 14,
"security.workspace.trust.untrustedFiles": "open",
"emmet.showSuggestionsAsSnippets": true,
"window.autoDetectColorScheme": true,
"workbench.preferredLightColorTheme": "GitHub Light",
"workbench.preferredDarkColorTheme": "GitHub Dark Dimmed",
"workbench.colorTheme": "GitHub Light Default",
"search.exclude": {
"*.min.*": true,
"package-lock.json": true
},
"editor.guides.indentation": false,
"editor.guides.highlightActiveBracketPair": false,
"editor.matchBrackets": "never",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.wordWrap": "bounded"
},
"[vue]": {
"editor.guides.indentation": true
},
"[xml]": {
"editor.defaultFormatter": "SwagUp.sf-xml-formatter",
"editor.formatOnSave": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment