Files
my-nvim/lua/crentist/lazy/parrot.lua
2025-04-22 11:13:26 +03:00

15 lines
402 B
Lua

return {
'frankroeder/parrot.nvim',
dependencies = { 'ibhagwan/fzf-lua', 'nvim-lua/plenary.nvim' },
opts = {
providers = {
anthropic = {
-- OPTIONAL: Alternative methods to retrieve API key
-- Using GPG for decryption:
api_key = { "sops", "-d", vim.fn.expand("$HOME") .. "/.claude-api" },
}
}
}
}