mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 09:48:42 +02:00
plugins/godot: init
This commit is contained in:
parent
84d7453e44
commit
c826d146c6
3 changed files with 62 additions and 0 deletions
17
tests/test-sources/plugins/languages/godot.nix
Normal file
17
tests/test-sources/plugins/languages/godot.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue