Compare commits

...

2 Commits

Author SHA1 Message Date
0ed7a50359 vim: fix copilot plugin name 2026-02-10 21:27:25 +01:00
bad97a55bd git: remove extraSettings 2026-02-10 21:27:16 +01:00
2 changed files with 3 additions and 4 deletions

View File

@@ -1,12 +1,11 @@
{ {
wrappers, wrappers,
pkgs, pkgs,
extraSettings ? { },
}: }:
let let
git = wrappers.wrapperModules.git.apply { git = wrappers.wrapperModules.git.apply {
inherit pkgs; inherit pkgs;
settings = pkgs.lib.recursiveUpdate { settings = {
alias = { alias = {
co = "checkout"; co = "checkout";
br = "branch"; br = "branch";
@@ -24,7 +23,7 @@ let
rebase.autoStash = true; rebase.autoStash = true;
merge.autoStash = true; merge.autoStash = true;
push.autoSetupRemote = true; push.autoSetupRemote = true;
} extraSettings; };
}; };
in in
git.wrapper git.wrapper

View File

@@ -81,7 +81,7 @@ neovim.override {
} }
) )
] ]
++ lib.optional withCopilot vimPlugins.copilot.nvim; ++ lib.optional withCopilot vimPlugins.copilot-nvim;
opt = [ opt = [
csv csv
dhall-vim dhall-vim