aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2020-09-28 20:55:28 +0800
committerGitHub <noreply@github.com>2020-09-28 20:55:28 +0800
commitef9e87ec532675af940a86640bb352422f2de6d3 (patch)
tree17137621ea23c32bd1cd5e2a1e20a89e764537c9
parent61ab8b1466aea915d0157885bc51caaeb207e49d (diff)
reduce yank highlight time
-rw-r--r--autocommands.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/autocommands.vim b/autocommands.vim
index 3791a07..7355538 100644
--- a/autocommands.vim
+++ b/autocommands.vim
@@ -62,6 +62,6 @@ augroup END
augroup highlight_yank
autocmd!
- au TextYankPost * silent! lua vim.highlight.on_yank{higroup="YankColor", timeout=700}
+ au TextYankPost * silent! lua vim.highlight.on_yank{higroup="YankColor", timeout=300}
augroup END
"}