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.
kickstart.nvim/lua/colinzhao/lazy/claude.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
},
}