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", + }, + }, }