vim-utils: fix broken vim-plug implementation.

wip/yesman
Thomas Kerber 6 years ago
parent 280ebc2e40
commit 3afe74864c
No known key found for this signature in database
GPG Key ID: 8489B911F9ED617B
  1. 4
      pkgs/misc/vim-plugins/vim-utils.nix

@ -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…
Cancel
Save