feat(utils): add music controls, add capsword, fix thanks.nvim, remove fugitive

Add music controls and capsword plugins, fix a bug in thanks.nvim plugin, and remove fugitive plugin as it is redundant with other plugins
This commit is contained in:
2024-08-02 09:23:27 -04:00
parent fd31bae2a8
commit 2d66d2fa97
+20 -6
View File
@@ -100,15 +100,10 @@ return {
require("kulala").setup()
end,
},
{ -- Fugitive
"tpope/vim-fugitive",
event = "InsertEnter",
dependencies = { "tpope/vim-rhubarb" },
},
{ -- Thanks/github-stars
"jsongerber/thanks.nvim",
event = "VeryLazy",
config = {
opts = {
star_on_install = false,
},
},
@@ -139,4 +134,23 @@ return {
},
},
},
{
"dmtrKovalenko/caps-word.nvim",
lazy = true,
opts = {},
keys = {
{
mode = { "i", "n" },
"<C-s>",
"<cmd>lua require('caps-word').toggle()<CR>",
},
},
},
{
"AntonVanAssche/music-controls.nvim",
dependencies = { "rcarriga/nvim-notify" },
opts = {
default_player = "YoutubeMusic",
},
},
}