1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00

Merge pull request #102605 from teto/vimAlias

neovim: take into account vi(m)Alias
This commit is contained in:
Matthieu Coudron 2020-11-03 11:41:03 +01:00 committed by GitHub
commit 72c32ad3d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

1
.github/CODEOWNERS vendored
View file

@ -178,6 +178,7 @@
# Neovim
/pkgs/applications/editors/neovim @jonringer
/pkgs/applications/editors/neovim @teto
# VimPlugins
/pkgs/misc/vim-plugins @jonringer @softinio

View file

@ -35,7 +35,7 @@ let
# for forward compability, when adding new environments, haskell etc.
, ...
}:
}@args:
let
rubyEnv = bundlerEnv {
name = "neovim-ruby-env";
@ -99,7 +99,7 @@ let
manifestRc = vimUtils.vimrcContent (configure // { customRC = ""; });
neovimRcContent = vimUtils.vimrcContent configure;
in
{
args // {
wrapperArgs = makeWrapperArgs;
inherit neovimRcContent;
inherit manifestRc;
@ -142,8 +142,7 @@ let
extraPythonPackages = compatFun extraPythonPackages;
inherit withPython3;
extraPython3Packages = compatFun extraPython3Packages;
inherit withNodeJs withRuby;
inherit withNodeJs withRuby viAlias vimAlias;
inherit configure;
};
in