Add layout and note plugins

This commit is contained in:
2018-08-20 10:14:59 +01:00
parent e13e70de6b
commit ada3cb7d3d
6 changed files with 55 additions and 0 deletions

8
notes/notes.plugin.zsh Normal file
View File

@@ -0,0 +1,8 @@
# TODO: Support opening multiple notes in buffers or tabs
note() {
if [[ "$1" == "" ]]; then
echo "usage: note \"<title>\""
else
vim -c "Note $1"
fi
}