Skip to content

Instantly share code, notes, and snippets.

@fabricionaweb
Last active February 15, 2022 10:17
Show Gist options
  • Save fabricionaweb/903da714b6fd2ee18e471d236300d328 to your computer and use it in GitHub Desktop.
Save fabricionaweb/903da714b6fd2ee18e471d236300d328 to your computer and use it in GitHub Desktop.
Minhas configurações do OSX

SSH key

ssh-keygen -C "fabricionaweb@gmail.com" -a 100 -t ed25519 -o

Mac Allow apps

sudo spctl --master-disable

Git config

git config --global push.default current
git config --global rebase.autosquash true
git config --global core.editor "code -w"
git config --global user.name "Fabricio Augusto"
git config --global user.email "fabricionaweb@gmail.com"
git config --global core.excludesfile ~/.gitignore

Git alias

alias gda="git branch | grep -v -E 'master' | xargs git branch -D"

Aplicativos

Homebrew

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Cask

brew tap caskroom/cask

Fora do brew

Pelo brew

brew install

  • wget
  • bash-completion
  • nvm
  • git
  • zsh
  • zsh-completions

Pelo cask

brew cask install

  • google-chrome
  • iterm2
  • appcleaner
  • the-unarchiver
  • vlc
  • droplr
  • franz
  • slack
  • telegram
  • skype
  • atom
  • docker
  • transmission
  • karabiner
  • onyx

quick-look-plugins

https://github.com/sindresorhus/quick-look-plugins

oh-my-zsh

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

zsh-autosuggestions

git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions

zsh-syntax-highlighting

git clone git://github.com/zsh-users/zsh-syntax-highlighting $ZSH_CUSTOM/plugins/zsh-syntax-highlighting

zsh-nvm

git clone git://github.com/lukechilds/zsh-nvm $ZSH_CUSTOM/plugins/zsh-nvm
export NVM_COMPLETION=true
export NVM_LAZY_LOAD=true
export NVM_NO_USE=true
export NVM_AUTO_USE=true

spaceship-zsh-theme

curl -o - https://raw.githubusercontent.com/denysdovhan/spaceship-zsh-theme/master/install.sh | zsh

iterm-one-dark

One Dark.itermcolors

Atom

apm install sync-settings

spaceship config

SPACESHIP_PACKAGE_SHOW="false"
SPACESHIP_GIT_BRANCH_COLOR="170"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment