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