summaryrefslogtreecommitdiff
path: root/zsh/.zshrc-mk
diff options
context:
space:
mode:
authorself <george@gabbott.dev>2022-12-22 19:39:22 +0000
committerself <george@gabbott.dev>2022-12-22 19:39:22 +0000
commit9f281cda8a281b183c0529d12b63aa173a43ce88 (patch)
tree169241d2a63bd915dc508d456a24aa8e59cb37bb /zsh/.zshrc-mk
parent972001b5ccf867717bc36b14bc97f22de88e30db (diff)
Changed some nvim cmds for wr
Diffstat (limited to 'zsh/.zshrc-mk')
-rw-r--r--zsh/.zshrc-mk10
1 files changed, 5 insertions, 5 deletions
diff --git a/zsh/.zshrc-mk b/zsh/.zshrc-mk
index 8fec533..2027a84 100644
--- a/zsh/.zshrc-mk
+++ b/zsh/.zshrc-mk
@@ -44,15 +44,15 @@ mnkic() {
mndream() { # Dream Record: D~
if [ -z $1 ] ; then DT="yesterday" else DT="$1" fi
mkdir -p "$HOME/docs/wr/dream"
- nvim "$HOME/docs/wr/dream/D$(date --iso-8601 -d $DT).txt"
+ wr "dream/D$(date --iso-8601 -d $DT).txt"
}
rddream() {
if [ -z "$1" ] ; then
- nvim "$HOME/docs/wr/dream"
+ wr "dream"
return
else
- nvim "$HOME/docs/wr/dream/D$(date --iso-8601 -d $DT).txt"
+ wr "dream/D$(date --iso-8601 -d $DT).txt"
fi
}
@@ -63,7 +63,7 @@ mn() { # Make note
lle() { # Life Log Entry: L~
if [ -z $1 ] ; then DT="today" else DT="$1" fi
mkdir -p "$HOME/docs/wr/lle/$(date +%Y-%m -d $DT)"
- nvim "$HOME/docs/wr/lle/$(date +%Y-%m -d $DT)/L$(date --iso-8601 -d $DT).txt"
+ wr "lle/$(date +%Y-%m -d $DT)/L$(date --iso-8601 -d $DT).txt"
}
# Make a holiday. For instance, mkhol 2022-11 draycott creates a directory
@@ -113,7 +113,7 @@ evmnhol() {
# exists first. Use date +%s -d "$(cat md | grep begin | cut -d'=' -f2)"
mkdir -p "$HOME/docs/wr/lle/$(date +%Y-%m -d $DT)"
- nvim "$HOME/docs/wr/lle/$(date +%Y-%m -d $DT)/H$(date --iso-8601 -d $DT).txt"
+ wr "lle/$(date +%Y-%m -d $DT)/H$(date --iso-8601 -d $DT).txt"
ln -s "../../$(date +%Y-%m -d $DT)/H$(date --iso-8601 -d $DT).txt" "$HOLIDAY/$EVMNHOL_DIR/H$(date --iso-8601 -d $DT).txt"
}