From 95a793f050862305fdc05a467808191ac12010b6 Mon Sep 17 00:00:00 2001 From: Garth Kidd Date: Wed, 27 May 2015 15:31:17 +1000 Subject: [PATCH 1/4] Fix settings docs: seongjaelee/notational-velocity#15 --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a4e6640..f6a7715 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,15 @@ We do believe Notational Velocity is the precursor of the famous note-taking app ## Settings -- `Note Directory`: The directory to archive notes. +To configure your note directory, set `notational-velocity.directory`: + +* Open your `~/.atom/config.cson` file via *Atom > Open Your Config* +* Append the following lines, indented one step in from `*` at the top: + + 'notational-velocity': + directory: '/path/to/your/notes' + +Double-quotes also work. ## Key Bindings From d8e60f9cfc21ae6f5e7a67cd257215e8f53e7d22 Mon Sep 17 00:00:00 2001 From: Garth Kidd Date: Wed, 27 May 2015 16:18:29 +1000 Subject: [PATCH 2/4] Assert CSON format. --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f6a7715..1062082 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,10 @@ To configure your note directory, set `notational-velocity.directory`: * Open your `~/.atom/config.cson` file via *Atom > Open Your Config* * Append the following lines, indented one step in from `*` at the top: - 'notational-velocity': - directory: '/path/to/your/notes' + ```cson + 'notational-velocity': + directory: '/path/to/your/notes' + ``` Double-quotes also work. From e39334f9fabb99220331d0676a953670753b2704 Mon Sep 17 00:00:00 2001 From: Garth Kidd Date: Wed, 27 May 2015 16:21:01 +1000 Subject: [PATCH 3/4] "via" is somewhat quaint. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1062082..50afc63 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ We do believe Notational Velocity is the precursor of the famous note-taking app To configure your note directory, set `notational-velocity.directory`: -* Open your `~/.atom/config.cson` file via *Atom > Open Your Config* +* Open your `~/.atom/config.cson` file from the menu: *Atom > Open Your Config* * Append the following lines, indented one step in from `*` at the top: ```cson From 91f4bca07726118aa17c396336c5f361e04a71be Mon Sep 17 00:00:00 2001 From: Garth Kidd Date: Wed, 27 May 2015 16:28:38 +1000 Subject: [PATCH 4/4] Extract indentation advice to subsequent paragraph. --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 50afc63..1cc00e4 100644 --- a/README.md +++ b/README.md @@ -29,13 +29,17 @@ We do believe Notational Velocity is the precursor of the famous note-taking app To configure your note directory, set `notational-velocity.directory`: * Open your `~/.atom/config.cson` file from the menu: *Atom > Open Your Config* -* Append the following lines, indented one step in from `*` at the top: +* Append the following lines: ```cson 'notational-velocity': directory: '/path/to/your/notes' ``` +The first line should be indented by one step from `*` at the top. If you've +kept the default indentation of two spaces, the block above should paste in +properly. + Double-quotes also work. ## Key Bindings