phase 1 mvp

This commit is contained in:
zolinthecow 2025-07-09 13:33:29 -07:00
parent abaca67308
commit 2a71451ca3
15 changed files with 2334 additions and 0 deletions

View file

@ -0,0 +1,13 @@
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
},
}

View file

@ -81,4 +81,7 @@ return {
{
'prisma/vim-prisma',
},
-- Claude integration
require 'colinzhao.lazy.claude',
}