dotfiles

My dotfiles

View on GitHub

On fresh install…

git clone https://github.com/dnnsmnstrr/dotfiles.git && cd dotfiles && ./install
/usr/bin/ruby -e "$(curl -fsSL https:/raw.githubusercontent.com/Homebrew/install/master/install)"
&& cd dotfiles && source ./brew/brew.sh
ln -s ~/dotfiles/alfred /Users/dm/Library/Application\ Support/Alfred/Alfred.alfredpreferences

init

The init script will:

Adding Apps, Aliases or Functions

To maintain the list of your installed apps, add them to their corresponding place in brew.sh. Aliases and functions can be added to their respective files.

Updating

The .aliases include an update alias that will run all kinds of updaters. (even shorter: ud) Alternative: mac update

Troubleshooting

sudo chown -R $(whoami) $(brew --prefix)/*
// get current gpg version path
ls -la /usr/local/bin/gpg
// symlink gpg2
ln -s ../Cellar/gnupg/{version}/bin/gpg /usr/local/bin/gpg2

<- Back