home: small formatting change
This commit is contained in:
parent
ab604c45b1
commit
f1f95891c7
|
@ -1,6 +1,6 @@
|
|||
{ pkgs, lib, ... }:
|
||||
let
|
||||
wrapHelix = { extraPackages ? [] , withPython3 ? true, extraPython3Packages ? (_: []) }:
|
||||
wrapHelix = { extraPackages ? [ ], withPython3 ? true, extraPython3Packages ? (_: []) }:
|
||||
pkgs.symlinkJoin {
|
||||
postBuild = ''
|
||||
rm $out/bin/hx
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{ pkgs, lib, ... }:
|
||||
let
|
||||
wrapKakoune = { extraPackages ? [] , withPython3 ? true, extraPython3Packages ? (_: []) }:
|
||||
wrapKakoune = { extraPackages ? [ ], withPython3 ? true, extraPython3Packages ? (_: []) }:
|
||||
pkgs.symlinkJoin {
|
||||
postBuild = ''
|
||||
rm $out/bin/kak
|
||||
|
|
|
@ -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."; };
|
||||
};
|
||||
} _
|
||||
|
|
Loading…
Reference in a new issue