Skip to content

Instantly share code, notes, and snippets.

View sidneyspe's full-sized avatar
🎯
Focusing

Sidney Pimentel sidneyspe

🎯
Focusing
  • Campina Grande - PB, Brasil
  • 03:57 (UTC -03:00)
  • LinkedIn in/sidneyspe
View GitHub Profile
@sidneyspe
sidneyspe / .hyper.js
Last active May 8, 2020 03:55
Hyper + FiraCode + Cmder + Dracula
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// Choose either "stable" for receiving highly polished,
// or "canary" for less polished but more frequent updates
updateChannel: "canary",
@sidneyspe
sidneyspe / .zshrc
Last active January 31, 2020 16:49
.zshrc
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
export ANDROID_HOME=~/Android/Sdk
export PATH="$PATH:$ANDROID_HOME/tools"
export PATH="$PATH:$ANDROID_HOME/platform-tools"
# Path to your oh-my-zsh installation.
export ZSH="/home/ipg/.oh-my-zsh"
export PATH="$PATH:/usr/local/bin"
@sidneyspe
sidneyspe / settings.json
Last active May 8, 2020 12:26
Settings for VSCode
{
// Define o tema do VSCode
"workbench.colorTheme": "Dracula",
// Configura tamanho e família da fonte
"editor.fontSize": 18,
"editor.lineHeight": 24,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"explorer.compactFolders": false,
// Aplica linhas verticais para lembrar de quebrar linha em códigos muito grandes
@sidneyspe
sidneyspe / .gitconfig
Last active November 16, 2025 23:18
alias for git
[user]
email = [email protected]
name = Your Name
[credential]
helper = store
[color]
branch = auto
diff = auto
status = auto
ui = auto