mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-23 04:43:00 +09:00
17 lines
269 B
Nix
Executable file
17 lines
269 B
Nix
Executable file
{
|
|
# lua
|
|
enable = true;
|
|
extraDiagnostics = {
|
|
enable = true;
|
|
types = [ "luacheck" ];
|
|
};
|
|
format = {
|
|
enable = true;
|
|
type = [ "stylua" ];
|
|
};
|
|
lsp = {
|
|
enable = true;
|
|
servers = [ "lua-language-server" ];
|
|
};
|
|
treesitter.enable = true;
|
|
}
|