mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-23 17:28:39 +02:00
17 lines
307 B
Nix
17 lines
307 B
Nix
{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";
|
|
};
|
|
};
|
|
};
|
|
}
|