|
|
@@ -0,0 +1,66 @@
|
|
|
+{
|
|
|
+ "files.autoSave": "onFocusChange",
|
|
|
+ "files.insertFinalNewline": true,
|
|
|
+ "workbench.colorTheme": "Atom One Dark",
|
|
|
+ "editor.formatOnSave": true,
|
|
|
+ "editor.fontFamily": "source code pro",
|
|
|
+ "editor.mouseWheelZoom": true,
|
|
|
+ "editor.codeActionsOnSave": {
|
|
|
+ "source.fixAll.eslint": "explicit"
|
|
|
+ },
|
|
|
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
|
+ // https://code.visualstudio.com/docs/setup/linux#_visual-studio-code-is-unable-to-watch-for-file-changes-in-this-large-workspace-error-enospc
|
|
|
+ "files.watcherExclude": {
|
|
|
+ "**/.git/**": true,
|
|
|
+ "**/node_modules/**": true
|
|
|
+ },
|
|
|
+ "[cpp]": {
|
|
|
+ "editor.defaultFormatter": "ms-vscode.cpptools"
|
|
|
+ },
|
|
|
+ "[rust]": {
|
|
|
+ "editor.defaultFormatter": "rust-lang.rust-analyzer"
|
|
|
+ },
|
|
|
+ "[proto3]": {
|
|
|
+ "editor.defaultFormatter": "zxh404.vscode-proto3"
|
|
|
+ },
|
|
|
+ "[yaml]": {
|
|
|
+ "editor.defaultFormatter": "redhat.vscode-yaml"
|
|
|
+ },
|
|
|
+ "[xml]": {
|
|
|
+ "editor.defaultFormatter": "redhat.vscode-xml"
|
|
|
+ },
|
|
|
+ "[python]": {
|
|
|
+ "editor.defaultFormatter": "ms-python.autopep8"
|
|
|
+ },
|
|
|
+ "[sql]": {
|
|
|
+ "editor.defaultFormatter": "mtxr.sqltools"
|
|
|
+ },
|
|
|
+ "[toml]": {
|
|
|
+ "editor.defaultFormatter": "tamasfe.even-better-toml"
|
|
|
+ },
|
|
|
+ "[go]": {
|
|
|
+ "editor.defaultFormatter": "golang.go"
|
|
|
+ },
|
|
|
+ "[java]": {
|
|
|
+ "editor.defaultFormatter": "redhat.java"
|
|
|
+ },
|
|
|
+ "[dockerfile]": {
|
|
|
+ "editor.defaultFormatter": "ms-azuretools.vscode-docker"
|
|
|
+ },
|
|
|
+ "[thrift]": {
|
|
|
+ "editor.defaultFormatter": "mrkou47.thrift-syntax-support"
|
|
|
+ },
|
|
|
+ "[shellscript]": {
|
|
|
+ "editor.defaultFormatter": "foxundermoon.shell-format"
|
|
|
+ },
|
|
|
+ "[ignore]": {
|
|
|
+ "editor.defaultFormatter": "foxundermoon.shell-format"
|
|
|
+ },
|
|
|
+ "[elixir]": {
|
|
|
+ "editor.defaultFormatter": "JakeBecker.elixir-ls"
|
|
|
+ },
|
|
|
+ "[phoenix-heex]": {
|
|
|
+ "editor.defaultFormatter": "JakeBecker.elixir-ls"
|
|
|
+ },
|
|
|
+ "java.configuration.updateBuildConfiguration": "automatic"
|
|
|
+}
|