feat(nvim): simplify keybinds

This commit is contained in:
Moritz Böhme 2024-11-22 16:00:54 +01:00
parent bf7928d3cc
commit 021a7dae5b
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
2 changed files with 4 additions and 4 deletions

View file

@ -66,7 +66,7 @@ in
"conform.nvim"
];
keymaps = [
{ key = "<leader>cf"; action.__raw = ''function() require("conform").format() end''; options.desc = "Format current file"; }
{ key = "="; action.__raw = ''function() require("conform").format() end''; options.desc = "Format current file"; }
];
};