plugins/claude-code: init module

This commit is contained in:
Austin Horstman 2025-05-07 21:29:59 -05:00 committed by Gaetan Lepage
parent 6597afe209
commit b17c801f2e
2 changed files with 64 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ lib, ... }:
lib.nixvim.plugins.mkNeovimPlugin {
name = "claude-code";
packPathName = "claude-code.nvim";
package = "claude-code-nvim";
maintainers = [ lib.maintainers.khaneliman ];
settingsExample = {
window = {
split_ratio = 0.4;
position = "vertical";
hide_numbers = false;
hide_signcolumn = false;
};
};
}