Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 951 Bytes

frameworks.md

File metadata and controls

29 lines (26 loc) · 951 Bytes
layout title
default
Tool-specific frameworks

Tool-specific frameworks

For a lot of us, a big chunk of our ~ folder is devoted to our shell and our text editor. Until you're ready to roll your own setup, these projects make customization safe and easy.

{% assign by_category = site.data.frameworks | group_by: 'category' | sort: 'name' %} {% for category in by_category %}

{{ category.name }}

{% assign by_subcategory = category.items | group_by: 'subcategory' | sort: 'name' %} {% for subcategory in by_subcategory %} {% if subcategory.name != "" %}

{{ subcategory.name }}

{% endif %}
    {% assign frameworks = subcategory.items | sort: 'stars' | reverse %} {% for repo in frameworks %} {% if repo.stars > 100 %}
  • {{ repo.name }} ({{ repo.stars }} stars) {{ repo.notes | markdownify | remove: '

    ' | remove: '

    ' }}
  • {% endif %} {% endfor %}
{% endfor %} {% endfor %}