Compare commits

...

2 Commits

@ -7,6 +7,8 @@ It can be run multiple times on the same machine safely.
It installs, upgrades, or skips packages
based on what is already installed on the machine.
- original repository : https://github.com/thoughtbot/laptop
Requirements
------------

@ -0,0 +1,19 @@
# move this file to ~/.laptop.local and edit to your liking
fancy_echo "Installing favorite editor"
brew install --cask visual-studio-code
fancy_echo "Installing bat (cat with wings)"
brew install bat
fancy_echo "Installing Obsidian (markdown editor and knowledge base manager)"
brew install --cask obsidian
fancy_echo "Cleaning up old Homebrew formulae ..."
brew cleanup
brew cask cleanup
if [ -r "$HOME/.rcrc" ]; then
fancy_echo "Updating dotfiles ..."
rcup
fi
Loading…
Cancel
Save