mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
vim-utils: fix broken vim-plug implementation.
This commit is contained in:
parent
280ebc2e40
commit
3afe74864c
@ -198,14 +198,14 @@ let
|
||||
/* vim-plug is an extremely popular vim plugin manager.
|
||||
*/
|
||||
plugImpl = lib.optionalString (plug != null)
|
||||
''
|
||||
(''
|
||||
source ${vimPlugins.vim-plug.rtp}/plug.vim
|
||||
call plug#begin('/dev/null')
|
||||
|
||||
'' + (lib.concatMapStringsSep "\n" (pkg: "Plug '${pkg.rtp}'") plug.plugins) + ''
|
||||
|
||||
call plug#end()
|
||||
'';
|
||||
'');
|
||||
|
||||
/*
|
||||
vim-addon-manager = VAM
|
||||
|
Loading…
Reference in New Issue
Block a user