X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=bashrc;h=d3b4a7662d3366f2d4107781654b881d1b526d62;hb=33f978f402c0b4138fab453d94c4eab6ff6a523c;hp=a2a2cdd69465a18e6388464ce80c4e5fc868b209;hpb=f0faba15cb05b5a5b6269816bb42e736fac9bb4b;p=max%2Fdotfiles.git diff --git a/bashrc b/bashrc index a2a2cdd..d3b4a76 100644 --- 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 "$*" +}