rust: nuked my custom formatter
This commit is contained in:
parent
27a02f12eb
commit
6fc3986e36
|
@ -1,4 +1,5 @@
|
|||
{ ... }: {
|
||||
{ ... }:
|
||||
{
|
||||
keymaps = [
|
||||
{
|
||||
# Focus file tree
|
||||
|
@ -10,6 +11,16 @@
|
|||
key = "<leader>e";
|
||||
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 = {
|
||||
formatters_by_ft = {
|
||||
rust = [ "cargo" ];
|
||||
};
|
||||
|
||||
formatters = {
|
||||
cargo = {
|
||||
command = "cargo-fmt";
|
||||
};
|
||||
rust = [ "rustfmt" ];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue