summaryrefslogtreecommitdiff
path: root/fnl/plugins/editor/orgmode.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2023-09-24 17:17:15 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2023-09-24 17:17:15 +0200
commit97718b1458d5cee72f292d05ecab93aa809b1175 (patch)
treea8bd7f4faa9967979b4445457bea80e140ccb338 /fnl/plugins/editor/orgmode.fnl
parent64a6eb23e50914fb1fa67a0de63dab6494056b3a (diff)
Set fold level to 0
Diffstat (limited to 'fnl/plugins/editor/orgmode.fnl')
-rw-r--r--fnl/plugins/editor/orgmode.fnl4
1 files changed, 2 insertions, 2 deletions
diff --git a/fnl/plugins/editor/orgmode.fnl b/fnl/plugins/editor/orgmode.fnl
index 3ffbd32..ed7d2a5 100644
--- a/fnl/plugins/editor/orgmode.fnl
+++ b/fnl/plugins/editor/orgmode.fnl
@@ -22,8 +22,8 @@
{:pattern :org
:callback (fn []
(tset vim.opt_local :foldenable false)
- (tset vim.opt_local :foldlevelstart 99)
- (tset vim.opt_local :foldlevel 99)
+ (tset vim.opt_local :foldlevelstart 0)
+ (tset vim.opt_local :foldlevel 0)
(tset vim.opt_local :conceallevel 2)
(tset vim.opt_local :concealcursor :nc))}]])