A dark and earthy colorscheme for Neovim. (mirror) github.com/ptdewey/darkearth-nvim
neovim neovim-colorscheme fennel
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: CI for autogenerating vimdocs

ptdewey cd6e2173 ed53cd80

+26
+26
.github/workflows/docs.yml
··· 1 + name: Generate Vimdoc 2 + 3 + on: 4 + push: 5 + branches: 6 + - main 7 + 8 + jobs: 9 + docs: 10 + runs-on: ubuntu-latest 11 + steps: 12 + - uses: actions/checkout@v3 13 + - name: panvimdoc 14 + uses: kdheepak/panvimdoc@main 15 + with: 16 + vimdoc: darkearth-nvim 17 + version: "Neovim >= 0.7.0" 18 + demojify: true 19 + treesitter: true 20 + - name: Push changes 21 + uses: stefanzweifel/git-auto-commit-action@v4 22 + with: 23 + commit_message: "auto-generate vimdoc" 24 + commit_user_name: "github-actions[bot]" 25 + commit_user_email: "github-actions[bot]@users.noreply.github.com" 26 + commit_author: "github-actions[bot] <github-actions[bot]@users.noreply.github.com>"