40 lines
792 B
Nix
40 lines
792 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
plugins.conform-nvim = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
# Run the formatter on file save.
|
|
format_on_save = {
|
|
lspFallback = true;
|
|
timeoutMs = 500;
|
|
};
|
|
# Receive notificaton when a formatter errors.
|
|
notifyOnError = true;
|
|
|
|
# Map of filetype to formatters.
|
|
formatters_by_ft = {
|
|
c = ["clang-format"];
|
|
lua = ["stylua"];
|
|
nix = ["alejandra"];
|
|
};
|
|
|
|
# Install our formatters
|
|
formatters = {
|
|
alejandra = {
|
|
command = lib.getExe pkgs.alejandra;
|
|
};
|
|
clang-format = {
|
|
command = lib.getExe' pkgs.clang-tools "clang-format";
|
|
};
|
|
stylua = {
|
|
command = lib.getExe pkgs.stylua;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|