fmt
This commit is contained in:
2025-08-06 16:43:10 +02:00
parent c3ddd5d3fa
commit 9ac8172726
10 changed files with 247 additions and 133 deletions

View File

@@ -0,0 +1,28 @@
{
programs.nixvim.keymaps = [
{
mode = "n";
key = "<leader>lf";
action = ":lua require('conform').format({ lsp_fallback = true })<CR>";
options.desc = "Format";
}
{
mode = "n";
key = "<leader>ff";
action = ":Pick files<CR>";
options.desc = "Search files";
}
{
mode = "n";
key = "<leader>/";
action = ":Pick grep_live<CR>";
options.desc = "Grep";
}
{
mode = "n";
key = "<leader>e";
action = ":Oil<CR>";
options.desc = "File browser";
}
];
}