]> git.friedersdorff.com Git - max/dotfiles.git/blobdiff - bashrc
Remove zsh and set up note taking
[max/dotfiles.git] / bashrc
diff --git a/bashrc b/bashrc
index a2a2cdd69465a18e6388464ce80c4e5fc868b209..f409183df063975506acec67f3e04f1d81acc6ad 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/"$*".txt
+}
+
+nls() {
+  ls -c ~/notes/ | grep "$*"
+}