summaryrefslogtreecommitdiff
path: root/kshrc
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--kshrc24
1 files changed, 23 insertions, 1 deletions
diff --git a/kshrc b/kshrc
index 4b29f09..54c49c4 100644
--- a/kshrc
+++ b/kshrc
@@ -11,6 +11,28 @@ alias infols="inxi -S -c 0"
alias de='eval "$(direnv export bash)"'
alias f-commit="fossil commit && fossil git export"
PS1='$(git branch 2> /dev/null | grep "^\*" | colrm 1 2 | sed -e "s/$/./")${PWD##*/} '
-export SHELL='ksh'
+
+export STITCH_DIRECTORY=/home/mccd/notes
+export STITCH_GREP_CMD=ugrep
+function log {
+ JRNL="$STITCH_DIRECTORY/$(date +'%y-%m-%d.%H:%M.%S').org"
+ echo '* :journal:' >> $JRNL
+ kak "$JRNL" +1:3 -e "execute-keys i"
+}
+
+function capture {
+ JRNL="$STITCH_DIRECTORY/$(date +'%y-%m-%d.%H:%M.%S').org"
+ echo '* ' >> $JRNL
+ kak "$JRNL" +1:3 -e "execute-keys i"
+}
+
+function todo {
+ JRNL="$STITCH_DIRECTORY/$(date +'%y-%m-%d.%H:%M.%S').org"
+ echo '* TODO ' >> $JRNL
+ kak "$JRNL" +1:8 -e "execute-keys i"
+}
+
+alias jrnl='stitch -t :journal:'
+
eval "$(direnv export bash)"
eval "$(zoxide init posix --hook prompt)"