24 lines
321 B
Nix
24 lines
321 B
Nix
{ self, ... }:
|
|
|
|
{
|
|
plugins.lsp = {
|
|
enable = true;
|
|
servers = {
|
|
# Nix
|
|
nixd = {
|
|
enable = true;
|
|
};
|
|
# Rust
|
|
rust-analyzer = {
|
|
enable = true;
|
|
installRustc = true;
|
|
installCargo = true;
|
|
};
|
|
# Godot
|
|
gdscript = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|