summaryrefslogtreecommitdiff
path: root/plugin/bujo.vim
blob: 77587f45750d1082a00a1ea1c5e5186cd8a12740 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"Make bujo directory if it doesn't exist"
if empty(glob('~/bujo'))
  call mkdir($HOME . '/bujo', 'p')
endif

autocmd bufnewfile todo.md call append(0, 'Date')
autocmd bufnewfile todo.md exe "1," . 10 . "g/Date.*/s//" .strftime("%a d %b %Y")
autocmd Bufwritepre,filewritepre todo.md execute "normal ma"



" 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