Last active
November 1, 2019 13:45
-
-
Save vagnernogueira/54b7c7ed28eb9de51d795ef569e30981 to your computer and use it in GitHub Desktop.
VC Code - Minhas configurações
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
{ | |
"editor.suggestSelection": "first", | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"editor.renderWhitespace": "all", | |
"editor.wordWrap": "on", | |
"editor.wordWrapColumn": 120, | |
"editor.minimap.enabled": true, | |
"extensions.ignoreRecommendations": true, | |
"extensions.showRecommendationsOnlyOnDemand": true, | |
"faker.locale": "pt_BR", | |
"files.autoSave": "afterDelay", | |
"files.exclude": { | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
}, | |
"git.enabled": false, | |
"http.proxySupport": "on", | |
"java.home":"C:\\Program Files\\Java\\jdk1.8.0_221", | |
"java.configuration.maven.userSettings": "D:\\apache-maven\\conf\\settings.xml", | |
"java.configuration.updateBuildConfiguration": "automatic", | |
"java.maven.downloadSources" : true, | |
"java.format.settings.url": "D:\\projetos\\servidor31git\\_jboss-config\\formatacaoJava.xml", | |
"maven.terminal.useJavaHome": true, | |
"maven.executable.path": "D:\\apache-maven\\bin\\mvn", | |
"maven.executable.options": "--settings D:\\apache-maven\\conf\\settings.xml", | |
"maven.terminal.favorites": [ | |
{ | |
"alias": "clean install", | |
"command": "clean install" | |
}, | |
{ | |
"alias": "sonar:sonar", | |
"command": "sonar:sonar" | |
}, | |
{ | |
"alias": "deploy", | |
"command": "deploy" | |
} | |
], | |
"rsp-ui.enableStartServerOnActivation": [ | |
{ | |
"id": "redhat.vscode-server-connector", | |
"name": "Red Hat RSP Server", | |
"startOnActivation": true | |
} | |
], | |
"shellLauncher.shells.windows": [ | |
{ | |
"shell": "C:\\Windows\\System32\\cmd.exe", | |
"label": "cmd" | |
}, | |
{ | |
"shell": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe", | |
"label": "PowerShell" | |
}, | |
{ | |
"shell": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"label": "Git bash" | |
} | |
], | |
"sync.gist": "b6177aec90ff0cc6eba85de5b713b091", | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"window.zoomLevel": 0, | |
"workbench.sideBar.location": "right", | |
"workbench.iconTheme": "material-icon-theme" | |
} |
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
$ code --list-extensions | |
alefragnani.Bookmarks | |
Asuka.insertnumbers | |
bbenoist.vagrant | |
berublan.vscode-log-viewer | |
bibhasdn.unique-lines | |
chrisdias.vscode-opennewinstance | |
CoenraadS.bracket-pair-colorizer | |
deerawan.vscode-faker | |
fabiospampinato.vscode-diff | |
formulahendry.code-runner | |
foxundermoon.shell-format | |
IBM.output-colorizer | |
jzarzoso.break-from-comma | |
marcostazi.VS-code-vagrantfile | |
medo64.render-crlf | |
mrmlnc.vscode-apache | |
ms-azuretools.vscode-docker | |
ms-vscode-remote.remote-wsl | |
PKief.material-icon-theme | |
redhat.java | |
redhat.vscode-rsp-ui | |
redhat.vscode-server-connector | |
redhat.vscode-xml | |
ritwickdey.LiveServer | |
royaction.color-manager | |
Shan.code-settings-sync | |
sleistner.vscode-fileutils | |
Tyriar.lorem-ipsum | |
Tyriar.shell-launcher | |
Tyriar.sort-lines | |
VisualStudioExptTeam.vscodeintellicode | |
vscjava.vscode-java-debug | |
vscjava.vscode-java-dependency | |
vscjava.vscode-java-pack | |
vscjava.vscode-java-test | |
vscjava.vscode-maven | |
wayou.vscode-todo-highlight | |
wmaurer.change-case |
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
Show hidden characters
{ | |
"folders": [ | |
{ | |
"path": "_deploy" | |
}, | |
{ | |
"path": "arrecadacao-ws" | |
} | |
], | |
"settings": { | |
"files.encoding": "windows1252", | |
"http.proxy": "http://vagner.silva:[email protected]:3128", | |
"https.proxy": "http://vagner.silva:[email protected]:3128", | |
"http.proxySupport": "on", | |
"logViewer.watch": [ | |
{ | |
"title": "jboss", | |
"pattern": "D:\\projetos\\vms\\lamp\\*.log" | |
} | |
], | |
"workbench.colorCustomizations": { | |
"titleBar.activeBackground": "#091349" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment