adjust things my way

This commit is contained in:
Thomas Ruoff
2017-08-14 23:37:35 +02:00
parent a638143b7f
commit d8e9b19ba1
15 changed files with 18 additions and 140 deletions

View File

@@ -1,4 +0,0 @@
_git_delete_branch ()
{
__gitcomp "$(__git_heads)"
}

View File

@@ -1,9 +0,0 @@
# Change file extensions recursively in current directory
#
# change-extension erb haml
function change-extension() {
foreach f (**/*.$1)
mv $f $f:r.$2
end
}

View File

@@ -1,10 +0,0 @@
# Load .env file into shell session for environment variables
function envup() {
if [ -f .env ]; then
export $(cat .env)
else
echo 'No .env file found' 1>&2
return 1
fi
}