Bug Description
Tried the documented and but nothing happens. Using lastest plugin as of this writing and nvim 0.11. Scrolling with the mouse works.
My config is just:
{
"greggh/claude-code.nvim",
dependencies = {
"nvim-lua/plenary.nvim", -- Required for git operations
},
config = function()
require("claude-code").setup({
git = {
use_git_root = false, -- Set CWD to git root when opening Claude Code (if in git project)
},
command = "CLAUDE_CODE_USE_BEDROCK=1 claude", -- Command used to launch Claude Code
window = {
position = "vertical",
},
})
end,
},
Bug Description
Tried the documented and but nothing happens. Using lastest plugin as of this writing and nvim 0.11. Scrolling with the mouse works.
My config is just:
{ "greggh/claude-code.nvim", dependencies = { "nvim-lua/plenary.nvim", -- Required for git operations }, config = function() require("claude-code").setup({ git = { use_git_root = false, -- Set CWD to git root when opening Claude Code (if in git project) }, command = "CLAUDE_CODE_USE_BEDROCK=1 claude", -- Command used to launch Claude Code window = { position = "vertical", }, }) end, },