diff options
author | Jersey <fonseca@uchicago.edu> | 2020-06-24 17:29:30 +0000 |
---|---|---|
committer | Jersey <fonseca@uchicago.edu> | 2020-06-24 17:29:30 +0000 |
commit | 2f1b4f1bce15df1c5c2f084390757cba5f4e75f4 (patch) | |
tree | edc2d5446fd84b0eb627722666f2ed21a0bf353c /plugin |
Barest of bones
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/bujo.vim | 9 |
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 | ||
2 | function s:OpenTodo() | ||
3 | "30 makes it open at width 30 | ||
4 | exe ":30vs ~/bujo/todo.md" | ||
5 | endfunction | ||
6 | |||
7 | if !exists(":Todo") | ||
8 | command Todo :call s:OpenTodo() | ||
9 | endif | ||