mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
10 lines
234 B
Lua
10 lines
234 B
Lua
-- git-worktree.nvim – 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()
|