summaryrefslogtreecommitdiffstats
path: root/nvim/lua/autocommands.lua
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2023-05-14 19:39:00 +0100
committerMatthew Lemon <y@yulqen.org>2023-05-14 19:39:00 +0100
commitce8fbf563883bae60bc53a157e25d80b83118fb7 (patch)
treef35be4d4253b16c5341932afff279f84e369b1d9 /nvim/lua/autocommands.lua
parent091e9228ef0d4db33f95f0078dbe5848dd672472 (diff)
Some minor tweaks - enables comments
Diffstat (limited to 'nvim/lua/autocommands.lua')
-rw-r--r--nvim/lua/autocommands.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/lua/autocommands.lua b/nvim/lua/autocommands.lua
index ab612b0..96439e1 100644
--- a/nvim/lua/autocommands.lua
+++ b/nvim/lua/autocommands.lua
@@ -26,7 +26,7 @@ vim.api.nvim_create_autocmd({ "VimResized" }, {
vim.api.nvim_create_autocmd({ "TextYankPost" }, {
callback = function()
- vim.highlight.on_yank { higroup = "Visual", timeout = 200 }
+ vim.highlight.on_yank { higroup = "Visual", timeout = 300 }
end,
})