FEAT: Adding Git-Worktree and commit plugin.
This commit is contained in:
11
lua/barink/plugins/comments.lua
Normal file
11
lua/barink/plugins/comments.lua
Normal file
@ -0,0 +1,11 @@
|
||||
return {
|
||||
'numToStr/Comment.nvim',
|
||||
opts = {
|
||||
-- add any options here
|
||||
},
|
||||
config = function ()
|
||||
require("Comment").setup()
|
||||
end,
|
||||
lazy = false,
|
||||
}
|
||||
|
10
lua/barink/plugins/git-worktree.lua
Normal file
10
lua/barink/plugins/git-worktree.lua
Normal 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
|
||||
}
|
Reference in New Issue
Block a user