feat(nvim): set improved comments for org files

This commit is contained in:
Price Hiller 2024-02-14 16:12:45 -06:00
parent 0987970579
commit b4e439dc9c
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -2,3 +2,10 @@ vim.opt_local.shiftwidth = 2
vim.opt_local.modeline = true
vim.opt_local.wrap = false
vim.opt_local.conceallevel = 1
vim.opt_local.comments = {
":- [ ]",
":- [x]",
":- [X]",
":- [-]",
":-"
}