mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-06 11:05:05 +02:00
13 lines
No EOL
348 B
Lua
13 lines
No EOL
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
|
|
},
|
|
} |