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