12 lines
287 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
}
|