nixos/home/modules/ide/nvim/lsp/langs/lua.nix
2025-11-16 01:03:19 +01:00

12 lines
287 B
Nix

{
plugins = {
lsp.servers.lua_ls.enable = true;
conform-nvim.settings = {
formatters_by_ft.lua = [ "stylua" ];
formatters.stylua = {
# if a command is string then it will execute the system's stylua binary
command = "stylua";
};
};
};
}