mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-04 14:24:29 +02:00
Some checks are pending
Publish every Git push to main to FlakeHub / flakehub-publish (push) Waiting to run
Publish every git push to Flakestry / publish-flake (push) Waiting to run
Documentation / Version info (push) Waiting to run
Documentation / Build (push) Blocked by required conditions
Documentation / Combine builds (push) Blocked by required conditions
Documentation / Deploy (push) Blocked by required conditions
22 lines
484 B
Nix
22 lines
484 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "claude-code";
|
|
packPathName = "claude-code.nvim";
|
|
package = "claude-code-nvim";
|
|
description = "Seamless integration between Claude Code AI assistant and Neovim";
|
|
|
|
maintainers = [ lib.maintainers.khaneliman ];
|
|
|
|
dependencies = [
|
|
"claude-code"
|
|
];
|
|
|
|
settingsExample = {
|
|
window = {
|
|
split_ratio = 0.4;
|
|
position = "vertical";
|
|
hide_numbers = false;
|
|
hide_signcolumn = false;
|
|
};
|
|
};
|
|
}
|