mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-04 04:35:29 +00:00
10 lines
212 B
Lua
10 lines
212 B
Lua
-- https://github.com/ThePrimeagen/git-worktree.nvim
|
|
local cmp_status_ok, worktree = pcall(require, "git-worktree")
|
|
if not cmp_status_ok then
|
|
return
|
|
end
|
|
|
|
vim.g.git_worktree_log_level = "error"
|
|
|
|
worktree.setup()
|