1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-09 10:31:08 +01:00
nixvim/plugins/by-name/godot/default.nix
2025-12-07 23:34:03 +00:00

21 lines
460 B
Nix

{ lib, ... }:
lib.nixvim.plugins.mkVimPlugin {
name = "godot";
package = "vim-godot";
globalPrefix = "godot_";
description = "A Neovim plugin for Godot game engine integration.";
maintainers = [ lib.maintainers.GaetanLepage ];
dependencies = [ "godot" ];
settingsOptions = {
executable = lib.nixvim.defaultNullOpts.mkStr "godot" ''
Path to the `godot` executable.
'';
};
settingsExample = {
executable = "godot";
};
}