apps: discord

This commit is contained in:
js0ny 2025-11-19 20:47:35 +00:00
parent bddc75a08b
commit dc742c2b52
21 changed files with 221 additions and 50 deletions

View file

@ -4,7 +4,7 @@ vim.api.nvim_create_autocmd("TextYankPost", {
desc = "Hightlight selection on yank",
pattern = "*",
callback = function()
vim.highlight.on_yank({ higroup = "IncSearch", timeout = 500 })
vim.hl.on_yank({ higroup = "IncSearch", timeout = 250 })
end,
})