feat(nvim): sunglasses and yanky extra

This commit is contained in:
Sergio Laín 2023-11-12 23:23:50 +01:00
parent 44d296d2e5
commit 1030061c2c
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,8 @@
return {
"miversen33/sunglasses.nvim",
event = "UIEnter",
opts = {
filter_type = "SHADE",
filter_percent = 0.85,
},
}

View file

@ -0,0 +1,12 @@
return {
"gbprod/yanky.nvim",
keys = {
{
"<leader>sy",
function()
require("telescope").extensions.yank_history.yank_history({})
end,
desc = "Yank History",
},
},
}