rust: nuked my custom formatter
This commit is contained in:
parent
27a02f12eb
commit
6fc3986e36
|
@ -1,4 +1,5 @@
|
||||||
{ ... }: {
|
{ ... }:
|
||||||
|
{
|
||||||
keymaps = [
|
keymaps = [
|
||||||
{
|
{
|
||||||
# Focus file tree
|
# Focus file tree
|
||||||
|
@ -10,6 +11,16 @@
|
||||||
key = "<leader>e";
|
key = "<leader>e";
|
||||||
action = "<cmd>CHADopen<cr>";
|
action = "<cmd>CHADopen<cr>";
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
# format current document
|
||||||
|
mode = "n";
|
||||||
|
key = "<leader>bf";
|
||||||
|
action = "<cmd>lua require('conform').format()<cr>";
|
||||||
|
options = {
|
||||||
|
silent = true;
|
||||||
|
desc = "Format Buffer";
|
||||||
|
};
|
||||||
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,13 +11,7 @@
|
||||||
|
|
||||||
conform-nvim.settings = {
|
conform-nvim.settings = {
|
||||||
formatters_by_ft = {
|
formatters_by_ft = {
|
||||||
rust = [ "cargo" ];
|
rust = [ "rustfmt" ];
|
||||||
};
|
|
||||||
|
|
||||||
formatters = {
|
|
||||||
cargo = {
|
|
||||||
command = "cargo-fmt";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue