mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 16:39:00 +02:00
18 lines
309 B
Nix
18 lines
309 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";
|
|
};
|
|
};
|
|
};
|
|
}
|