My Neovim Plugins #13 — YankCode

When you share code with a colleage, it is always nice to have the line-numbers and filename + path added. With this little helper, it is just a keystroke away: YankCode.

Config

return {
	"AaronLasseigne/yank-code",
	keys = {
		{ "yC", ":YankCode<cr>" },
	},
}

89 of #100DaysToOffload
#log #neovim
Thoughts? Discuss...