Last active
October 13, 2023 07:05
-
-
Save hardyscc/9bcf566d7212a1d713b46a93ba1ba41d to your computer and use it in GitHub Desktop.
Visual Studio Code Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"vim.insertModeKeyBindings": [ | |
{ | |
"before": ["j", "k"], | |
"after": ["<esc>"] | |
} | |
], | |
"vim.startInInsertMode": false, | |
"files.exclude": { | |
"**/node_modules": true, | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
}, | |
"git.enableSmartCommit": true, | |
"git.autofetch": true, | |
"git.confirmSync": false, | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": true | |
}, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnSave": true, | |
"editor.renderWhitespace": "all", | |
"editor.tabSize": 2, | |
"[java]": { | |
"editor.defaultFormatter": "redhat.java", | |
"editor.tabSize": 4, | |
"editor.detectIndentation": false | |
}, | |
"[xml]": { | |
"editor.tabSize": 4, | |
"editor.defaultFormatter": "redhat.vscode-xml" | |
}, | |
"[jrxml]": { | |
"editor.tabSize": 4, | |
"editor.formatOnSave": false, | |
}, | |
"[yaml]": { | |
"editor.formatOnSave": false, | |
}, | |
"[dart]": { | |
"editor.formatOnSave": true, | |
"editor.formatOnType": true, | |
"editor.rulers": [ | |
80 | |
], | |
"editor.selectionHighlight": false, | |
"editor.suggest.snippetsPreventQuickSuggestions": false, | |
"editor.suggestSelection": "first", | |
"editor.tabCompletion": "onlySnippets", | |
"editor.wordBasedSuggestions": false | |
}, | |
"editor.quickSuggestions": { | |
"strings": "on" | |
}, | |
"workbench.iconTheme": "material-icon-theme", | |
"java.compile.nullAnalysis.mode": "disabled" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment