nvim-lua.kickstart.nvim/lua/colinzhao/lazy/claude.lua

15 lines
507 B
Lua
Raw Normal View History

2025-07-09 13:33:29 -07:00
return {
dir = vim.fn.stdpath('config') .. '/lua/nvim-claude',
name = 'nvim-claude',
config = function()
require('nvim-claude').setup({
-- Custom config can go here
})
end,
dependencies = {
'nvim-telescope/telescope.nvim', -- For agent picker
'tpope/vim-fugitive', -- Already installed, for diffs
2025-07-09 16:57:05 -07:00
'sindrets/diffview.nvim', -- For advanced diff viewing
2025-07-09 18:23:14 -07:00
'axkirillov/unified.nvim', -- For unified diff view with fine-grained hunk staging
2025-07-09 13:33:29 -07:00
},
}