A simple note keeper, with the help of git.
Inspired by "did.txt file" by Patrick Tran, see https://theptrk.com/2018/07/11/did-txt-file. And Jethro Kuan, see https://blog.jethro.dev/posts/how_to_take_smart_notes_org.
Note keeps two kinds of notes:
- daily (or fleeting) notes, and
- subject related notes.
Daily notes will be opened by default and can be used for note not related to a specific subject. These can later be searched through. Other notes might be related to a specific subject, e.g. a project your working on, these are all contained within a single file.
The simplest usage of note is command below, which opens today's note using
your preferred editor (see below to change the editor).
$ noteEach first usage of the day note will automatically create a new note file to
write your notes in.
Notes related to the same subject are better contained within the same file. To open the note file related to a subject the following command can be used.
$ note $subject
# For example:
$ note my_projectAfter taking a bunch of notes it might become hard to remember on which day your
wrote what. So to aid reading notes note support searching notes for a
key-words.
$ note search $key_word
# For example:
$ note search note takingUnder the hood this using grep or ripgrep (if installed) to search the notes and opens them using your preferred editor.
The following environment variables changes the behaviour of note.
$EDITORdetermines what editor to use when editing a note, defaults tovim.$NOTES_DIRsets the directory which contains all notes, defaults to~/.notes.$NOTES_AUTO_SYNC, if this is set totrue, or1, notes will callgit add . && git syncafter each call, defaults to false.
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or https://opensource.org/licenses/MIT)
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.