22 lines
391 B
Nix
22 lines
391 B
Nix
{
|
|
plugins.lsp.servers = {
|
|
lua_ls = {
|
|
enable = true;
|
|
extraOptions = {
|
|
settings = {
|
|
Lua = {
|
|
completion = {
|
|
callSnippet = "Replace";
|
|
};
|
|
telemetry = {
|
|
enabled = false;
|
|
};
|
|
hint = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|