aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDefaultGen <gravel.justness270@slmail.me>2024-06-05 14:25:05 -0400
committerDefaultGen <gravel.justness270@slmail.me>2024-06-05 14:25:05 -0400
commit5e8cd8762c2894b40036ce0bc02a15c3b23ce5bd (patch)
treecba5179131093b58e7e7cb9bcbb7c2837dc3f0ac /README.md
parent5939127700344d86a560a3765b2138f23ab2862e (diff)
downloadsimple-denote.nvim-5e8cd8762c2894b40036ce0bc02a15c3b23ce5bd.tar.gz
Fixed signature and heading edge cases
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 5c32444..2b5f7a1 100644
--- a/README.md
+++ b/README.md
@@ -22,10 +22,10 @@ Example config via [lazy.nvim](https://github.com/folke/lazy.nvim)
{
"DefaultGen/simple-denote.nvim",
opts = {
- ext = "md", -- Note file extension (e.g. md, org, norg)
+ ext = "md", -- Note file extension (e.g. md, org, norg, txt)
dir = "~/notes", -- Notes directory (should already exist)
add_heading = true, -- Add a md/org heading to new notes
- retitle_heading = true, -- Replace the first line with a new heading when retitling
+ retitle_heading = true, -- Replace the first line heading when retitling
},
},
```