Skip to content

Instantly share code, notes, and snippets.

View guilhermecapitao's full-sized avatar

Guilherme Capitão guilhermecapitao

View GitHub Profile
@guilhermecapitao
guilhermecapitao / settings.json
Created June 8, 2021 21:01
WIndows terminal
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"copyOnSelect": false,
"copyFormatting": false,
{
// "terminal.integrated.shell.osx": "/bin/zsh",
// Configura o tamanho e família da fonte
"editor.fontSize": 14,
"editor.lineHeight": 24,
"editor.fontFamily": "JetBrains Mono",
"editor.fontLigatures": true,
"explorer.compactFolders": false,
// Aplica linhas verticais para lembrar de quebrar a linha em códigos muito grandes
"editor.rulers": [
@guilhermecapitao
guilhermecapitao / .hyper.js
Last active June 13, 2021 23:00
Hyper terminal
module.exports = {
config: {
updateChannel: 'stable',
fontSize: 12,
fontFamily: "JetBrains Mono",
fontWeight: 'normal',
export ZSH="/home/capitao/.oh-my-zsh"
### JAVA and Android Studio
export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64
export ANDROID_HOME=~/Android/Sdk
export PATH=$PATH:$ANDROID_HOME/emulator
export PATH=$PATH:$ANDROID_HOME/tools
export PATH=$PATH:$ANDROID_HOME/tools/bin
export PATH=$PATH:$ANDROID_HOME/platform-tools