Last active
February 25, 2021 23:16
-
-
Save loic-roux-404/2a9d9bc78249679b90ed617bc3c08aa2 to your computer and use it in GitHub Desktop.
my vscode settings
This file contains 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
{ | |
"window.zoomLevel": 0, | |
"files.autoSave": "afterDelay", | |
"workbench.editor.enablePreview": false, | |
"editor.fontFamily": "'Fira Code', Monaco, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"sass.lint.enable": true, | |
"sass.disableUnitCompletion": false, | |
"emmet.showSuggestionsAsSnippets": true, | |
"editor.fontSize": 15, | |
"update.mode": "none", | |
"files.associations": { | |
"Vagrantfile": "ruby", | |
"*.twig": "twig", | |
"basics": "nginx", | |
"all": "yaml", | |
"security": "ansible-advanced", | |
"hosting": "ansible-advanced", | |
"env": "ansible-advanced", | |
"stack": "ansible-advanced", | |
"*.yml": "yaml", | |
".travis.yml": "yaml", | |
".appveyor.yml": "yaml", | |
".manala.yml": "yaml", | |
".yaml": "yaml", | |
"*.tmpl": "gotemplate", | |
"*.y(a)ml.tmpl": "goyaml", | |
"*.hcl": "hcl", | |
".denonrc": "json", | |
"*.toml": "toml" | |
}, | |
"[scss]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"[twig]": { | |
"editor.defaultFormatter": "SimonSiefke.prettier-vscode" | |
}, | |
"[jinja]": { | |
"editor.defaultFormatter": "SimonSiefke.prettier-vscode" | |
}, | |
"[php]": { | |
"editor.defaultFormatter": "ms-vsliveshare.vsliveshare" | |
}, | |
"[java]": { | |
"editor.defaultFormatter": "georgewfraser.vscode-javac" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"[gojson]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"[yaml|goyaml|ansible|ansible-advanced|hcl]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"twig-language-2.braceLine": true, | |
"twig-language-2.bracePadding": true, | |
"twig-language-2.braces": true, | |
"twig-language-2.commentLine": true, | |
"twig-language-2.correct": true, | |
"twig-language-2.elseLine": true, | |
"twig-language-2.formatArray": "indent", | |
"twig-language-2.forceIndent": true, | |
"workbench.colorTheme": "Monokai", | |
"python.jediEnabled": false, | |
"AllAutocomplete.cycleOpenDocumentsOnLaunch": true, | |
"AllAutocomplete.dontContributeToSelf": true, | |
"path-autocomplete.triggerOutsideStrings": true, | |
"workbench.iconTheme": "vscode-icons", | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"go.testFlags": ["-v"], | |
"go.formatTool": "goimports", | |
"go.useLanguageServer": true, | |
"github.statusbar.enabled": false, | |
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -javaagent:\"/Users/loic/.vscode-oss/extensions/gabrielbb.vscode-lombok-1.0.1/server/lombok.jar\"", | |
"diffEditor.ignoreTrimWhitespace": false, | |
"sshfs.configs": [ | |
{ | |
"host": "localhost", | |
"label": "ia", | |
"name": "vagrant", | |
"port": 2222, | |
"privateKeyPath": "/Users/loic/.ssh/id_rsa", | |
"root": "/home", | |
"username": "vagrant" | |
} | |
], | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"[python]": { | |
"editor.defaultFormatter": "ms-python.python" | |
}, | |
"python.languageServer": "Microsoft", | |
"todo-tree.tree.showScanModeButton": false, | |
"[gohtml]": { | |
"editor.codeActionsOnSave": {} | |
}, | |
"git.autofetch": true, | |
"terminal.integrated.inheritEnv": false, | |
"C_Cpp.updateChannel": "Insiders", | |
"debug.onTaskErrors": "showErrors", | |
"cmake.configureOnOpen": true, | |
"[cpp]": { | |
"editor.defaultFormatter": "ms-vscode.cpptools" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features" | |
}, | |
"go.toolsManagement.autoUpdate": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment