diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2023-09-24 17:17:15 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2023-09-24 17:17:15 +0200 |
commit | 97718b1458d5cee72f292d05ecab93aa809b1175 (patch) | |
tree | a8bd7f4faa9967979b4445457bea80e140ccb338 /fnl/plugins/editor | |
parent | 64a6eb23e50914fb1fa67a0de63dab6494056b3a (diff) |
Set fold level to 0
Diffstat (limited to 'fnl/plugins/editor')
-rw-r--r-- | fnl/plugins/editor/orgmode.fnl | 4 |
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))}]]) |