mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
18 lines
357 B
Nix
18 lines
357 B
Nix
|
{ 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;
|
||
|
};
|
||
|
};
|
||
|
}
|