From 51c93db7b580a737be59fd4560e754db68c160d1 Mon Sep 17 00:00:00 2001 From: The_miro Date: Tue, 19 May 2026 09:03:22 +0200 Subject: [PATCH] feat(nvim): add claude-code.nvim plugin Adds greggh/claude-code.nvim with plenary.nvim as a required dependency. Provides :ClaudeCode toggle, continue/resume/verbose commands, and / cC keybinds out of the box. Co-Authored-By: Claude Sonnet 4.6 --- nvim/init.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nvim/init.lua b/nvim/init.lua index 664793b..ed4dcba 100644 --- a/nvim/init.lua +++ b/nvim/init.lua @@ -37,6 +37,13 @@ require("lazy").setup({ "nvim-mini/mini.icons", "tadmccorkle/markdown.nvim", { "ellisonleao/glow.nvim", config = true }, + { + "greggh/claude-code.nvim", + dependencies = { "nvim-lua/plenary.nvim" }, + config = function() + require("claude-code").setup() + end, + }, }, { -- keep lazy's own UI out of the way on first install install = { colorscheme = { "habamax" } },