A super simple note taking system ✏️. Stop adding text files to your desktop, start writing plain text notes with one command in the terminal.
```sh $ notem goal planning
```
Then your notes are sorted by date and easily searched using notem.
List all notes:
sh
$ notem --list
Search for a note by its title (like grep):
sh
$ notem --search goal planning
The default editor is determined first by the EDITOR environment variable, with several fallbacks to common text editors. To change this update your shell's EDITOR environment variable:
sh
export EDITOR="/usr/bin/nano"
By default all notes are saved in a folder called notes
in the home directory.
To change this update the NOTEM_PATH environment variable:
```sh
export NOTEM_PATH="/Users/computer-name/my-custom-path" ```
With Homebrew (recommended):
sh
$ brew tap danpaz/tap
$ brew install notem