Compare commits
No commits in common. "72bdc91e49340478378a1fdf494dff5f902795c7" and "25f1e6722fa7123d1ee40c8a4968b95c3cbb42d0" have entirely different histories.
72bdc91e49
...
25f1e6722f
2 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
|||
mkNixeovim = { system, config }:
|
||||
let pkgs = import nixpkgs { inherit system; }; in
|
||||
import ./. { inherit config pkgs nix2lua; };
|
||||
mkNixeovimPackage = args: (mkNixeovim args).build.neovim.toplevel;
|
||||
mkNixeovimPackage = args: (mkNixeovim args).build.neovim.package;
|
||||
in
|
||||
{
|
||||
lib = { inherit mkNixeovim mkNixeovimPackage; };
|
||||
|
|
|
@ -90,7 +90,7 @@ let
|
|||
config.event
|
||||
{
|
||||
inherit (config) pattern buffer desc callback command once nested;
|
||||
group = call "vim.api.nvim_create_augroup" [ config.group { } ];
|
||||
group = call "vim.api.nvim_create_augroup" config.group;
|
||||
}
|
||||
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue