nvim: use vim.pack

This commit is contained in:
2025-12-20 10:30:27 +01:00
parent 48392501e1
commit 292de198a6
13 changed files with 475 additions and 428 deletions

View File

@@ -1,7 +1,12 @@
return {
opts = {
vim.pack.add({ "https://github.com/otavioschwanck/arrow.nvim" })
local ok, arrow = pcall(require, "arrow")
if ok then
arrow.setup({
show_icons = false,
leader_key = "_",
buffer_leader_key = " m",
},
}
})
else
print("plugin arrow missing")
end