home: small formatting change
This commit is contained in:
parent
ab604c45b1
commit
f1f95891c7
|
@ -1,6 +1,6 @@
|
||||||
{ pkgs, lib, ... }:
|
{ pkgs, lib, ... }:
|
||||||
let
|
let
|
||||||
wrapHelix = { extraPackages ? [] , withPython3 ? true, extraPython3Packages ? (_: []) }:
|
wrapHelix = { extraPackages ? [ ], withPython3 ? true, extraPython3Packages ? (_: []) }:
|
||||||
pkgs.symlinkJoin {
|
pkgs.symlinkJoin {
|
||||||
postBuild = ''
|
postBuild = ''
|
||||||
rm $out/bin/hx
|
rm $out/bin/hx
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ pkgs, lib, ... }:
|
{ pkgs, lib, ... }:
|
||||||
let
|
let
|
||||||
wrapKakoune = { extraPackages ? [] , withPython3 ? true, extraPython3Packages ? (_: []) }:
|
wrapKakoune = { extraPackages ? [ ], withPython3 ? true, extraPython3Packages ? (_: []) }:
|
||||||
pkgs.symlinkJoin {
|
pkgs.symlinkJoin {
|
||||||
postBuild = ''
|
postBuild = ''
|
||||||
rm $out/bin/kak
|
rm $out/bin/kak
|
||||||
|
|
|
@ -407,7 +407,7 @@
|
||||||
rhs = vim.lsp.buf.references;
|
rhs = vim.lsp.buf.references;
|
||||||
desc = "Lists all the references to the symbol under the cursor in the quickfix window."; };
|
desc = "Lists all the references to the symbol under the cursor in the quickfix window."; };
|
||||||
"<space>f" = {
|
"<space>f" = {
|
||||||
rhs = DEFUN (vim.lsp.buf.format {async = true;});
|
rhs = DEFUN (vim.lsp.buf.format { async = true; });
|
||||||
desc = "Formats a buffer."; };
|
desc = "Formats a buffer."; };
|
||||||
};
|
};
|
||||||
} _
|
} _
|
||||||
|
|
Loading…
Reference in a new issue