summaryrefslogtreecommitdiff
path: root/yank.lua
blob: ea6786d95e4f4b059aa20bb95a1cf0da5a70bf49 (plain)
1
2
3
4
5
6
7
8
9
10
{
	"svban/YankAssassin.nvim",
	event = "VeryLazy",
	config = function()
		require("YankAssassin").setup {
			auto_normal = true, -- if true, autocmds are used. Whenever y is used in normal mode, the cursor doesn't move to start
			auto_visual = true, -- if true, autocmds are used. Whenever y is used in visual mode, the cursor doesn't move to start
		}
	end,
}