From 2d66d2fa975cf8fc0ad633ab87670e2d7230a570 Mon Sep 17 00:00:00 2001 From: rootiest Date: Fri, 2 Aug 2024 09:23:27 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(utils):=20add=20music=20contro?= =?UTF-8?q?ls,=20add=20capsword,=20fix=20thanks.nvim,=20remove=20fugitive?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add music controls and capsword plugins, fix a bug in thanks.nvim plugin, and remove fugitive plugin as it is redundant with other plugins --- lua/plugins/util.lua | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/lua/plugins/util.lua b/lua/plugins/util.lua index 167b850..4f0d058 100644 --- a/lua/plugins/util.lua +++ b/lua/plugins/util.lua @@ -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" }, + "", + "lua require('caps-word').toggle()", + }, + }, + }, + { + "AntonVanAssche/music-controls.nvim", + dependencies = { "rcarriga/nvim-notify" }, + opts = { + default_player = "YoutubeMusic", + }, + }, }