neovim: rewrite config

This commit is contained in:
2023-08-29 00:42:44 +03:00
parent fd67c6c242
commit 7221b8a04b
26 changed files with 106 additions and 872 deletions

View File

@@ -0,0 +1,9 @@
local group = vim.api.nvim_create_augroup("RootGroup", { clear = true })
vim.api.nvim_create_autocmd("TextYankPost", {
pattern = "*",
group = group,
callback = function()
vim.highlight.on_yank({ timeout = 200 })
end,
})