added alias for opening finder using f <dir>
diff --git a/plugins/osx.plugin.bash b/plugins/osx.plugin.bash
index a2ad79b..1dd9266 100644
--- a/plugins/osx.plugin.bash
+++ b/plugins/osx.plugin.bash
@@ -1,5 +1,7 @@
 #!/bin/bash
 
+alias f='open -a Finder '
+
 function tab() {
   osascript 2>/dev/null <<EOF
     tell application "System Events"
@@ -10,4 +12,4 @@
       do script with command "cd \"$PWD\"; $*" in window 1
     end tell
 EOF
-}
\ No newline at end of file
+}