Skip to content

Instantly share code, notes, and snippets.

@veggiemonk
Last active January 23, 2020 20:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save veggiemonk/73bc98aad67493044c94e52d83337e88 to your computer and use it in GitHub Desktop.
Save veggiemonk/73bc98aad67493044c94e52d83337e88 to your computer and use it in GitHub Desktop.
here we go again
sudo xcode-select --install

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

defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false
defaults write -g InitialKeyRepeat -int 10 # normal minimum is 15 (225 ms)
defaults write -g KeyRepeat -int 1 # normal minimum is 2 (30 ms)

brew tap homebrew/cask-fonts
brew cask install docker \
                  vlc \
                  font-fira-code \
                  iterm2 \
                  firefox \
                  google-chrome \
                  jetbrains-toolbox \
                  keybase \
                  visual-studio-code \
                  menumeters \
                  clipy

brew install fish \
              git \
              curl \
              vim \
              exa \
              fzf \
              bat \
              rg \
              tree \
              go \
              zsh \
              starship \
              coreutils \
              vim \
              python \
              asdf


echo /usr/local/bin/fish | sudo tee -a /etc/shells
chsh -s /usr/local/bin/fish

mkdir -p ~/.config/fish/ && \
  echo "starship init fish | source" >>  ~/.config/fish/config.fish

mkdir .ssh &&  \
    cd .ssh &&  \
    ssh-keygen -t ecdsa -b 521 -C $(whoami) -f github && \
    pbcopy < github.pub

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