til
is a TUI for a markdown logbook/diary.
nix run github:damianfral/til
til v1.0.0
Usage: til [--directory STRING] [--editor STRING]
Available options:
-h,--help Show this help text
--directory STRING Log directory (default: "./")
--editor STRING Editor to open markdown files (default: "vi")
Keybinding | Description |
---|---|
Esc |
exit |
q |
exit |
h |
help |
r |
refresh current entry |
J |
select day before |
K |
select day after |
j |
increase scroll |
k |
decrease scroll |
e |
edit entry |
home-manager.users.my-user = {
imports = [inputs.til.homeManagerModules.default];
programs.til.enable = true;
programs.til.directory = "~/code/journal";
programs.til.editor = "nvim";
}