Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
marciotoshio committed Dec 22, 2024
1 parent aa4caca commit f7ef1ce
Show file tree
Hide file tree
Showing 10 changed files with 7 additions and 318 deletions.
6 changes: 3 additions & 3 deletions .aliases
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ alias ~="cd ~" # `cd` is probably faster to type though
alias -- -="cd -"

# Shortcuts
alias d="cd ~/Dropbox"
alias dl="cd ~/Downloads"
alias dt="cd ~/Desktop"
alias p="cd ~/Projects"
Expand Down Expand Up @@ -140,6 +139,7 @@ alias reload="exec $SHELL -l"
# Docker
alias docker_clean_images='docker rmi $(docker images -a --filter=dangling=true -q)'
alias docker_clean_ps='docker rm $(docker ps --filter=status=exited --filter=status=created -q)'
alias docker_clean_volumes='docker volume rm $(docker volume ls -qf dangling=true)'

# Rails
alias rails_db_migrate='bundle exec rake db:migrate db:test:prepare'
# Kamal
alias kamal='docker run -it --rm -v "${PWD}:/workdir" -v "/run/host-services/ssh-auth.sock:/run/host-services/ssh-auth.sock" -e SSH_AUTH_SOCK="/run/host-services/ssh-auth.sock" -v /var/run/docker.sock:/var/run/docker.sock ghcr.io/basecamp/kamal:latest'
10 changes: 0 additions & 10 deletions .exports
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,6 @@
# Make vim the default editor.
export EDITOR='vim';

# Enable persistent REPL history for `node`.
export NODE_REPL_HISTORY=~/.node_history;
# Allow 32³ entries; the default is 1000.
export NODE_REPL_HISTORY_SIZE='32768';
# Use sloppy mode by default, matching web browsers.
export NODE_REPL_MODE='sloppy';

# Make Python use UTF-8 encoding for output to stdin, stdout, and stderr.
export PYTHONIOENCODING='UTF-8';

# Increase Bash history size. Allow 32³ entries; the default is 500.
export HISTSIZE='32768';
export HISTFILESIZE="${HISTSIZE}";
Expand Down
178 changes: 0 additions & 178 deletions .hyper.js

This file was deleted.

6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,6 @@ When setting up a new Mac, you may want to install some common [Homebrew](http:/
./sh/brew.sh
```

### Install Homebrew Cask formulae

```bash
./sh/brew-cask.sh
```

## Thanks to…

* [Mathias Bynens](https://mathiasbynens.be/) for the start
1 change: 0 additions & 1 deletion bin/subl

This file was deleted.

1 change: 0 additions & 1 deletion bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ function doIt() {
fi;

rsync --exclude ".git/" \
--exclude "init/" \
--exclude "sh/" \
--exclude ".DS_Store" \
--exclude ".osx" \
Expand Down
7 changes: 0 additions & 7 deletions init/Markdown.sublime-settings

This file was deleted.

60 changes: 0 additions & 60 deletions init/Preferences.sublime-settings

This file was deleted.

47 changes: 0 additions & 47 deletions sh/brew-cask.sh

This file was deleted.

9 changes: 4 additions & 5 deletions sh/brew.sh
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,15 @@ brew install pigz
brew install pv
brew install rename
brew install rhino
brew install speedtest_cli
# brew install speedtest_cli
brew install ssh-copy-id
brew install testssl
brew install tree
brew install vbindiff
brew install webkit2png
# brew install vbindiff
# brew install webkit2png
brew install zopfli
brew install zsh
brew install node
brew install docker

echo "Setting zsh as default shell"
chsh -s $(which zsh)
Expand All @@ -115,7 +115,6 @@ gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB8
#Install RVM with latest ruby
\curl -sSL https://get.rvm.io | bash -s stable --ruby


# Remove outdated versions from the cellar.
echo "Homebrew: cleaning up..."
brew cleanup
Expand Down

0 comments on commit f7ef1ce

Please sign in to comment.