You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
395 B
13 lines
395 B
source ~/.config/vim/plug.vim
|
|
{% set plugins = namespace(sources=[]) %}
|
|
{% import 'pluginlist.j2' as pluginlist with context %}
|
|
|
|
call plug#begin('~/.cache/{{ variant }}/plugged')
|
|
{% for link, extra in plugins.sources %}
|
|
{% if extra %}
|
|
Plug '{{ link }}', { {% for k, v in extra.items() %}'{{ k }}': '{{ v }}', {% endfor %} }
|
|
{% else %}
|
|
Plug '{{ link }}'
|
|
{% endif %}
|
|
{% endfor %}
|
|
call plug#end()
|