Switched from alejandra to nixfmt(-rfc-style)

Also re-formatted nix files
This commit is contained in:
alejandro-angulo 2024-12-27 23:39:34 -08:00
parent ea90b0356f
commit ddb857e6ac
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6
7 changed files with 66 additions and 52 deletions

View file

@ -1,16 +1,17 @@
{pkgs, ...}: {
extraPlugins = with pkgs.vimPlugins; [rhubarb];
{ pkgs, ... }:
{
extraPlugins = with pkgs.vimPlugins; [ rhubarb ];
keymaps = [
{
action = "<cmd>GBrowse<CR>";
key = "<leader>bro";
mode = ["n"];
mode = [ "n" ];
}
{
action = ":GBrowse<CR>";
key = "<leader>bro";
mode = ["v"];
mode = [ "v" ];
}
];
}