Skip to content
This repository has been archived by the owner on Jan 26, 2023. It is now read-only.

Latest commit

 

History

History
46 lines (33 loc) · 1.39 KB

README.rst

File metadata and controls

46 lines (33 loc) · 1.39 KB

Jot 📝

Version Requires

Jot is a CLI utility that lets you write notes with out having to worry about where they're stored. By default, all notes are stored in a git repo at ~/.jot in markdown and automatically pushed to a git repo.

Install

$ sudo pip install jot-notes

Usage

$ # Edit today's note, ie: ~/.jot/YYYY-MM-DD.md
$ jot
$ # edit a note in a category with a specific name, ie: ~/.jot/foo/bar.md
$ jot -c foo -n bar
$ # disable git integration

Configuring Jot

Most of Jot's configuration can be done on the CLI & with environment variables. Here are the relevant environment variables:

  • EDITOR - what text editor to use, defaults to nano
  • JOT_DIR - where to store jot's notes, defaults to ~/.jot
  • JOT_EXT - file extension to use for notes, defaults to .md
  • JOT_NO_GIT - disable jot's git integration
  • JOT_NO_GIT_PUSH - disable automatic git push
  • JOT_TEMPLATE - Default jot contents as a python str.format() style string. default: '# {name}\n\n'