summaryrefslogtreecommitdiff
path: root/plugin/bujo.vim
blob: 735e0320779b56eccfdce21976f7c580d5baa63f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
if empty(glob('~/bujo'))
  mkdir('~/bujo')
  !mv ./../templates/todo.md ~/bujo/
endif

" Open the bujo todo list file
function s:OpenTodo()
  "30 makes it open at width 30
  exe ":30vs ~/bujo/todo.md" 
endfunction

if !exists(":Todo")
  command Todo :call s:OpenTodo()
endif