summaryrefslogtreecommitdiffstatshomepage
path: root/nvim/lua/plugins/git-worktree.lua
blob: 2bc889258f949fd13c0edbf6ab7f2fa2f7750fd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
local status_ok, git_worktree = pcall(require, "git-worktree")
if not status_ok then
	return
end

git_worktree.setup({
})

local status_ok, telescope = pcall(require, "telescope")
if not status_ok then
	return
end

require("telescope").load_extension("git_worktree")