Add gitignore for dumb vim thing brew for multiple users function.

This commit is contained in:
Ivan Malison 2014-08-25 22:09:50 -07:00
parent 14c87b9848
commit 8b351dce12
2 changed files with 9 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
.ropeproject
dotfiles/vim/bundle/*
dotfiles/vim/.netrwhist

View File

@ -230,3 +230,10 @@ function ss() {
function git_config_string() {
git config -f $1 --list | xargs -I kv sh -c "echo "\'kv\'""
}
function brew_for_multiple_user() {
sudo chgrp -R admin /usr/local
sudo chmod -R g+w /usr/local
sudo chgrp -R admin /Library/Caches/Homebrew
sudo chmod -R g+w /Library/Caches/Homebrew
}