Skip to content

Instantly share code, notes, and snippets.

@oalvesnelio
Last active January 20, 2022 23:30
Show Gist options
  • Save oalvesnelio/a629693b613301c8e24d5883a5bb47be to your computer and use it in GitHub Desktop.
Save oalvesnelio/a629693b613301c8e24d5883a5bb47be to your computer and use it in GitHub Desktop.
vs-code-configuration
{
"files.hotExit": "onExitAndWindowClose",
"files.autoSave": "onFocusChange",
"files.associations": {
"*.twig": "html"
},
"editor.tabSize": 2,
"editor.accessibilitySupport": "off",
"editor.bracketPairColorization.enabled": true,
"editor.codeLensFontSize": 12,
"editor.definitionLinkOpensInPeek": true,
"editor.guides.bracketPairsHorizontal": true,
"editor.guides.bracketPairs": true,
"editor.hideCursorInOverviewRuler": true,
"editor.cursorBlinking": "smooth",
"editor.cursorStyle": "block-outline",
"editor.formatOnSave": true,
"diffEditor.codeLens": true,
"extensions.autoUpdate": "onlyEnabledExtensions",
"php-cs-fixer.executablePath": "${extensionPath}/php-cs-fixer.phar",
"php-cs-fixer.lastDownload": 1642719234920,
"php-cs-fixer.rules": "@PhpCsFixer",
"[php]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client",
},
"workbench.commandPalette.history": 150,
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "Monokai",
"workbench.settings.editor": "json",
"workbench.colorCustomizations": {
"terminal.foreground": "#FFFFFF",
"terminalCursor.foreground": "#FFFFFF",
"terminal.selectionBackground": "#F1F1F1",
"terminal.ansiBlack": "#FFFFFF",
},
"workbench.editorAssociations": {
"*.pdf": "default"
},
"workbench.startupEditor": "none",
}
@oalvesnelio
Copy link
Author

Configurações basicas para desenvolvimento localhost.

  • Extensões Instaladas
code --install-extension bmewburn.vscode-intelephense-client
code --install-extension CodeStream.codestream
code --install-extension duboiss.sf-pack
code --install-extension eamodio.gitlens
code --install-extension formulahendry.vscode-mysql
code --install-extension Jannchie.codetime
code --install-extension junstyle.php-cs-fixer
code --install-extension mblode.twig-language-2
code --install-extension MehediDracula.php-namespace-resolver
code --install-extension mhutchie.git-graph
code --install-extension mikestead.dotenv
code --install-extension monokai.theme-monokai-pro-vscode
code --install-extension ms-azuretools.vscode-docker
code --install-extension MS-CEINTL.vscode-language-pack-pt-BR
code --install-extension ms-vscode-remote.remote-ssh
code --install-extension ms-vscode-remote.remote-ssh-edit
code --install-extension ms-vscode-remote.remote-wsl
code --install-extension phproberto.vscode-php-getters-setters
code --install-extension redhat.vscode-yaml
code --install-extension vivaxy.vscode-conventional-commits
code --install-extension vscode-icons-team.vscode-icons
code --install-extension yzhang.markdown-all-in-one

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment