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.

ci: add ci workflows

ptdewey fbf71f93 edf42f60

+49
+1
.github/FUNDING.yml
··· 1 + github: ptdewey
+26
.github/workflows/docs.yaml
··· 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: yankbank-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: "docs: 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>"
+22
.github/workflows/release.yaml
··· 1 + name: Release To GitHub 2 + 3 + on: 4 + push: 5 + branches: 6 + - main 7 + workflow_dispatch: 8 + 9 + permissions: 10 + contents: write 11 + pull-requests: write 12 + issues: write 13 + 14 + jobs: 15 + release: 16 + name: Release To GitHub 17 + runs-on: ubuntu-latest 18 + steps: 19 + - uses: googleapis/release-please-action@v4 20 + with: 21 + token: ${{ secrets.GITHUB_TOKEN }} 22 + release-type: simple