]> git.friedersdorff.com Git - max/dotfiles.git/blobdiff - bashrc
Use ratpoison as window manager
[max/dotfiles.git] / bashrc
diff --git a/bashrc b/bashrc
index a2a2cdd69465a18e6388464ce80c4e5fc868b209..d3b4a7662d3366f2d4107781654b881d1b526d62 100644 (file)
--- a/bashrc
+++ b/bashrc
@@ -111,3 +111,13 @@ if ! shopt -oq posix; then
     . /etc/bash_completion
   fi
 fi
+
+
+# Some simple note taking functions
+n() {
+  $EDITOR ~/notes/"$*".md
+}
+
+nls() {
+  ls -cR ~/notes/ | grep "$*"
+}