summaryrefslogtreecommitdiff
path: root/archive/.config/nvim/lua/plugins/yank.lua
blob: cdf0f158c83dd3c63b32b636ae4bc345f40baa19 (plain)
1
2
3
4
5
6
7
8
9
10
return {
	"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,
}