home: small formatting change

This commit is contained in:
chayleaf 2023-06-29 07:47:59 +07:00
parent ab604c45b1
commit f1f95891c7
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{ pkgs, lib, ... }:
let
wrapHelix = { extraPackages ? [] , withPython3 ? true, extraPython3Packages ? (_: []) }:
wrapHelix = { extraPackages ? [ ], withPython3 ? true, extraPython3Packages ? (_: []) }:
pkgs.symlinkJoin {
postBuild = ''
rm $out/bin/hx

View file

@ -1,6 +1,6 @@
{ pkgs, lib, ... }:
let
wrapKakoune = { extraPackages ? [] , withPython3 ? true, extraPython3Packages ? (_: []) }:
wrapKakoune = { extraPackages ? [ ], withPython3 ? true, extraPython3Packages ? (_: []) }:
pkgs.symlinkJoin {
postBuild = ''
rm $out/bin/kak

View file

@ -407,7 +407,7 @@
rhs = vim.lsp.buf.references;
desc = "Lists all the references to the symbol under the cursor in the quickfix window."; };
"<space>f" = {
rhs = DEFUN (vim.lsp.buf.format {async = true;});
rhs = DEFUN (vim.lsp.buf.format { async = true; });
desc = "Formats a buffer."; };
};
} _