nix-community.nixvim/tests/test-sources/plugins/languages/godot.nix

18 lines
307 B
Nix
Raw Normal View History

2024-04-22 10:05:55 +02:00
{pkgs, ...}: {
empty = {
# Godot is only available on Linux
plugins.godot.enable = pkgs.stdenv.isLinux;
};
defaults = {
plugins.godot = {
# Godot is only available on Linux
enable = pkgs.stdenv.isLinux;
settings = {
executable = "godot";
};
};
};
}