fix: remove redundant formatters_by_ft, fix notifications keymap

This commit is contained in:
antoine 2026-03-22 10:20:23 +01:00
parent fd25eb8f8b
commit f58d0b9e8c
Signed by: antoine
GPG key ID: 9EB6BAADC51B6133
2 changed files with 4 additions and 12 deletions

View file

@ -1,17 +1,9 @@
{...}: {
vim.formatter.conform-nvim = {
enable = true;
setupOpts = {
formatters_by_ft = {
lua = ["stylua"];
rust = ["rustfmt"];
nix = ["alejandra"];
python = ["black"];
};
format_on_save = {
timeout_ms = 2000;
lsp_format = "fallback";
};
setupOpts.format_on_save = {
timeout_ms = 2000;
lsp_format = "fallback";
};
};
}