summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorJersey <fonseca@uchicago.edu>2020-06-24 17:29:30 +0000
committerJersey <fonseca@uchicago.edu>2020-06-24 17:29:30 +0000
commit2f1b4f1bce15df1c5c2f084390757cba5f4e75f4 (patch)
treeedc2d5446fd84b0eb627722666f2ed21a0bf353c /plugin
Barest of bones
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