mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-07 19:44:58 +02:00
phase 1 mvp
This commit is contained in:
parent
abaca67308
commit
2a71451ca3
15 changed files with 2334 additions and 0 deletions
13
lua/colinzhao/lazy/claude.lua
Normal file
13
lua/colinzhao/lazy/claude.lua
Normal 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
|
||||
},
|
||||
}
|
|
@ -81,4 +81,7 @@ return {
|
|||
{
|
||||
'prisma/vim-prisma',
|
||||
},
|
||||
|
||||
-- Claude integration
|
||||
require 'colinzhao.lazy.claude',
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue