1
0

FEAT: Adding Git-Worktree and commit plugin.

This commit is contained in:
2024-04-28 11:10:29 +02:00
parent e9488d5948
commit d8d6365bee
3 changed files with 43 additions and 20 deletions

View File

@ -0,0 +1,11 @@
return {
'numToStr/Comment.nvim',
opts = {
-- add any options here
},
config = function ()
require("Comment").setup()
end,
lazy = false,
}

View File

@ -0,0 +1,10 @@
return {
'ThePrimeagen/git-worktree.nvim',
dependencies = {
'nvim-telescope/telescope.nvim'
},
init = function()
require("git-worktree").setup()
require("telescope").load_extension("git_worktree")
end
}