return { { 'greggh/claude-code.nvim', dependencies = { 'nvim-lua/plenary.nvim', -- Required for git operations }, config = function() require('claude-code').setup { window = { position = 'float', }, keymaps = { toggle = { normal = 'c', -- Normal mode keymap for toggling Claude Code, false to disable terminal = 'false', -- Terminal mode keymap for toggling Claude Code, false to disable -- variants = { -- continue = "cC", -- Normal mode keymap for Claude Code with continue flag -- verbose = "cV", -- Normal mode keymap for Claude Code with verbose flag --}, }, window_navigation = true, -- Enable window navigation keymaps () scrolling = true, -- Enable scrolling keymaps () for page up/down }, } end, }, }