From f1f95891c78b8f60fa9506b1ee84ccabf02757a2 Mon Sep 17 00:00:00 2001 From: chayleaf Date: Thu, 29 Jun 2023 07:47:59 +0700 Subject: [PATCH] home: small formatting change --- home/common/helix.nix | 2 +- home/common/kakoune.nix | 2 +- home/common/nvim.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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."; }; }; } _