Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fabramosdev/f4aa1149cd3828fb14ed4897caaca4b8 to your computer and use it in GitHub Desktop.
Save fabramosdev/f4aa1149cd3828fb14ed4897caaca4b8 to your computer and use it in GitHub Desktop.
vscode config
{
"security.workspace.trust.untrustedFiles": "open",
"workbench.iconTheme": "vscode-icons",
"editor.fontFamily": "IBM Plex Mono",
"editor.fontSize": 16,
"editor.fontLigatures": true,
"editor.formatOnSave": true,
"editor.rulers": [110],
"terminal.integrated.fontFamily": "MesloLGS NF",
"terminal.integrated.fontSize": 14,
"workbench.colorTheme": "One Dark Pro",
"explorer.compactFolders": false,
"editor.tabSize": 2,
"elixirLS.suggestSpecs": false,
"elixirLS.dialyzerEnabled": true,
"elixirLS.signatureAfterComplete": false,
"elixirLS.fetchDeps": true,
"files.associations": {
"*.heex": "phoenix-heex"
},
"[javascript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[elixir]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "JakeBecker.elixir-ls"
},
"[phoenix-heex]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "JakeBecker.elixir-ls"
},
"emmet.includeLanguages": {
"elixir": "html",
"phoenix-heex": "html",
"html-eex": "html"
},
"emmet.triggerExpansionOnTab": true,
"editor.multiCursorModifier": "ctrlCmd",
"git.confirmSync": false,
// RUST CONFIG
"files.readonlyInclude": {
"**/.cargo/registry/src/**/*.rs": true,
"**/.cargo/git/checkouts/**/*.rs": true,
"**/lib/rustlib/src/rust/library/**/*.rs": true
},
"workbench.startupEditor": "none",
"explorer.confirmDelete": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.inlayHints.parameterTypes.enabled": false,
"typescript.inlayHints.parameterNames.enabled": "all",
"typescript.inlayHints.parameterTypes.enabled": false,
"files.watcherExclude": {
"**/.bloop": true,
"**/.metals": true
},
"github.copilot.nextEditSuggestions.enabled": true,
"github.copilot.enable": {
"*": false,
"plaintext": false,
"markdown": false,
"scminput": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment