mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-07 03:25:12 +02:00
13 lines
348 B
Lua
13 lines
348 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
|
||
|
},
|
||
|
}
|