You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
507 B
Lua
15 lines
507 B
Lua
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
|
|
'sindrets/diffview.nvim', -- For advanced diff viewing
|
|
'axkirillov/unified.nvim', -- For unified diff view with fine-grained hunk staging
|
|
},
|
|
} |