summaryrefslogtreecommitdiff
path: root/plugin/bujo.vim
blob: b4d1d859ca212d5ce8fd6cf986362468ee302f56 (plain)
1
2
3
4
5
6
7
8
9
" 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