diff --git a/home/common/helix.nix b/home/common/helix.nix index 19cc131..dcabd6f 100644 --- a/home/common/helix.nix +++ b/home/common/helix.nix @@ -1,6 +1,6 @@ { pkgs, lib, ... }: let - wrapHelix = { extraPackages ? [] , withPython3 ? true, extraPython3Packages ? (_: []) }: + wrapHelix = { extraPackages ? [ ], withPython3 ? true, extraPython3Packages ? (_: []) }: pkgs.symlinkJoin { postBuild = '' rm $out/bin/hx diff --git a/home/common/kakoune.nix b/home/common/kakoune.nix index 6cd303e..376bb92 100644 --- a/home/common/kakoune.nix +++ b/home/common/kakoune.nix @@ -1,6 +1,6 @@ { pkgs, lib, ... }: let - wrapKakoune = { extraPackages ? [] , withPython3 ? true, extraPython3Packages ? (_: []) }: + wrapKakoune = { extraPackages ? [ ], withPython3 ? true, extraPython3Packages ? (_: []) }: pkgs.symlinkJoin { postBuild = '' rm $out/bin/kak diff --git a/home/common/nvim.nix b/home/common/nvim.nix index f36bffa..d612153 100644 --- a/home/common/nvim.nix +++ b/home/common/nvim.nix @@ -407,7 +407,7 @@ rhs = vim.lsp.buf.references; desc = "Lists all the references to the symbol under the cursor in the quickfix window."; }; "f" = { - rhs = DEFUN (vim.lsp.buf.format {async = true;}); + rhs = DEFUN (vim.lsp.buf.format { async = true; }); desc = "Formats a buffer."; }; }; } _