summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
Diffstat (limited to 'plugin')
-rw-r--r--plugin/bujo.vim9
1 files changed, 9 insertions, 0 deletions
diff --git a/plugin/bujo.vim b/plugin/bujo.vim
new file mode 100644
index 0000000..b4d1d85
--- /dev/null
+++ b/plugin/bujo.vim
@@ -0,0 +1,9 @@
1" Open the bujo todo list file
2function s:OpenTodo()
3 "30 makes it open at width 30
4 exe ":30vs ~/bujo/todo.md"
5endfunction
6
7if !exists(":Todo")
8 command Todo :call s:OpenTodo()
9endif