diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-05-10 20:44:07 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-05-10 20:44:07 +0200 |
commit | e49bfd3e3c3690366ce36a0c8e4b7e4b058493ad (patch) | |
tree | e3edf73aef75ee873f9d5c2d5ea477c36edf4df8 /fnl/plugins/orgmode.fnl | |
parent | d184bc7201d737927df8e550405f894816ab949a (diff) |
Add conceal cursor
Diffstat (limited to 'fnl/plugins/orgmode.fnl')
-rw-r--r-- | fnl/plugins/orgmode.fnl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fnl/plugins/orgmode.fnl b/fnl/plugins/orgmode.fnl index 8297d13..e89039b 100644 --- a/fnl/plugins/orgmode.fnl +++ b/fnl/plugins/orgmode.fnl @@ -29,7 +29,8 @@ (tset vim.opt_local :foldenable false) (tset vim.opt_local :foldlevelstart 0) (tset vim.opt_local :foldlevel 0) - (tset vim.opt_local :conceallevel 2))}]]) + (tset vim.opt_local :conceallevel 2) + (tset vim.opt.local :concealcursor :nc))}]]) (fn init [] (let [cmds (require :util.cmds)] |