this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

task-note matches correct template, %link is highlighted on vimwiki filetypes

+4 -2
+2
home/profiles/nvim/default.nix
··· 151 151 home.file.".config/nvim/after/syntax/vimwiki.vim".text = '' 152 152 " match with %update 153 153 syntax match VimwikiPlaceholder /^\s*%update\ze\%(\s.*\)\?$/ nextgroup=VimwikiPlaceholderParam skipwhite 154 + " match with %link 155 + syntax match VimwikiPlaceholder /^\s*%link\ze\%(\s.*\)\?$/ nextgroup=VimwikiPlaceholderParam skipwhite 154 156 ''; 155 157 156 158 #environment.systemPackages = with customPlugins; [ tidal ];
+2 -2
home/profiles/task/bin/task-note.py
··· 41 41 time = datetime.datetime.now().strftime("%y-%m-%d %H:%M") 42 42 43 43 with open(notes_file, "w") as f: 44 - f.write(f"%title: {task_description}") 44 + f.write(f"%title {task_description}") 45 45 f.write(f":task:{task_project}:{task_tags if len(task_tags) else ''}\n") 46 - f.write(f"%date: {time}\n\n") 46 + f.write(f"%date {time}\n\n") 47 47 f.flush() 48 48 49 49 os.execlp(EDITOR, EDITOR, notes_file)