diff options
-rw-r--r-- | fnl/config/autocmd.fnl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fnl/config/autocmd.fnl b/fnl/config/autocmd.fnl index 0c74fe8..2e3fee2 100644 --- a/fnl/config/autocmd.fnl +++ b/fnl/config/autocmd.fnl @@ -12,7 +12,8 @@ (create-autocmd :TextYankPost {:callback (lambda [] - (vim.highlight.on_yank {:timeout 200}))}) + (vim.highlight.on_yank {:higroup :Visual + :timeout 200}))}) (create-autocmd :BufWinEnter {:command "setlocal formatoptions-=cro"}) |