Meh I'll figure out submodules later
This commit is contained in:
parent
4ca9d44a90
commit
8cb281f436
352 changed files with 66107 additions and 0 deletions
60
.config/nvim/pack/tree/start/nvim-web-devicons/.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
60
.config/nvim/pack/tree/start/nvim-web-devicons/.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
|
@ -0,0 +1,60 @@
|
|||
name: Bug report
|
||||
description: Report a problem
|
||||
type: bug
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
Before reporting:
|
||||
* search [existing issues](https://github.com/nvim-tree/nvim-web-devicons/issues)
|
||||
* ensure that nvim-web-devicons is updated to the latest version
|
||||
* please ensure that you are running the latest version of a [Nerd Font](https://www.nerdfonts.com/)
|
||||
* windows users please see [Windows and WSL not rendering icons properly on some terminals](https://github.com/nvim-tree/nvim-web-devicons?tab=readme-ov-file#windows-and-wsl-not-rendering-icons-properly-on-some-terminals)
|
||||
|
||||
Please submit a Pull Request to add an icon, see [CONTRIBUTING.md](https://github.com/nvim-tree/nvim-web-devicons/blob/master/CONTRIBUTING.md)
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: "Description"
|
||||
description: "A short description of the problem you are reporting."
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: "Neovim version"
|
||||
description: "Output of `nvim --version`"
|
||||
placeholder: |
|
||||
NVIM v0.10.3
|
||||
Build type: RelWithDebInfo
|
||||
LuaJIT 2.1.1731601260
|
||||
render: text
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
attributes:
|
||||
label: "nvim-web-devicons version"
|
||||
description: "`cd <your-package-directory>/nvim-web-devicons.lua ; git log --format='%h' -n 1`"
|
||||
placeholder: |
|
||||
commit hash
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
attributes:
|
||||
label: "Operating system and version"
|
||||
placeholder: "Linux 5.16.11-arch1-1, macOS 11.5, Windows 10"
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
attributes:
|
||||
label: "Windows variant"
|
||||
placeholder: "WSL, PowerShell, cygwin, msys"
|
||||
validations:
|
||||
required: false
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: "Expected behavior"
|
||||
description: "A description of the behavior you expected:"
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: "Actual behavior"
|
||||
description: "Observed behavior (may optionally include images, videos or a screencast)."
|
||||
|
22
.config/nvim/pack/tree/start/nvim-web-devicons/.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
22
.config/nvim/pack/tree/start/nvim-web-devicons/.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
---
|
||||
name: Feature request
|
||||
about: Suggest an idea for nvim-web-devicons
|
||||
title: ''
|
||||
type: feature
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
**Is this a request for a new icon?**
|
||||
Please submit a Pull Request to add an icon, see [CONTRIBUTING.md](https://github.com/nvim-tree/nvim-web-devicons/blob/master/CONTRIBUTING.md)
|
||||
|
||||
**Is your feature request related to a problem? Please describe.**
|
||||
A clear and concise description of what the problem is.
|
||||
|
||||
**Describe the solution you'd like**
|
||||
A clear and concise description of what you want to happen.
|
||||
|
||||
**Describe alternatives you've considered**
|
||||
A clear and concise description of any alternative solutions or features you've considered.
|
||||
|
||||
**Additional context**
|
||||
Add any other context or screenshots about the feature request here.
|
67
.config/nvim/pack/tree/start/nvim-web-devicons/.github/workflows/ci.yml
vendored
Normal file
67
.config/nvim/pack/tree/start/nvim-web-devicons/.github/workflows/ci.yml
vendored
Normal file
|
@ -0,0 +1,67 @@
|
|||
name: CI
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- '*'
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: leafo/gh-actions-lua@v10
|
||||
with:
|
||||
luaVersion: "5.1"
|
||||
|
||||
- uses: leafo/gh-actions-luarocks@v4
|
||||
|
||||
- name: luacheck
|
||||
run: |
|
||||
luarocks install luacheck 1.1.1
|
||||
make lint
|
||||
|
||||
style:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: stylua
|
||||
uses: JohnnyMorganz/stylua-action@v4
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
version: "v2.0.2"
|
||||
args: --check lua scripts
|
||||
|
||||
colors:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: rhysd/action-setup-vim@v1
|
||||
with:
|
||||
neovim: true
|
||||
|
||||
- name: make colors-check
|
||||
run: make colors-check
|
||||
|
||||
filetypes:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: rhysd/action-setup-vim@v1
|
||||
with:
|
||||
neovim: true
|
||||
|
||||
- name: make filetypes
|
||||
env:
|
||||
VIMRUNTIME: /home/runner/nvim-stable/share/nvim/runtime
|
||||
run: make filetypes
|
23
.config/nvim/pack/tree/start/nvim-web-devicons/.github/workflows/pre-commit-autoupdate.yml
vendored
Normal file
23
.config/nvim/pack/tree/start/nvim-web-devicons/.github/workflows/pre-commit-autoupdate.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
name: Pre-commit autoupdate
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 0 * * *"
|
||||
workflow_dispatch:
|
||||
permissions:
|
||||
contents: write
|
||||
pull-requests: write
|
||||
jobs:
|
||||
auto-update:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-python@v5
|
||||
- run: pip install pre-commit
|
||||
- run: pre-commit autoupdate
|
||||
- uses: peter-evans/create-pull-request@v7
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
branch: update/pre-commit-hooks
|
||||
title: "chore: update pre-commit hooks"
|
||||
commit-message: "chore: update pre-commit hooks"
|
||||
body: Update versions of pre-commit hooks to latest version.
|
28
.config/nvim/pack/tree/start/nvim-web-devicons/.github/workflows/release.yml
vendored
Normal file
28
.config/nvim/pack/tree/start/nvim-web-devicons/.github/workflows/release.yml
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
name: Release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
luarocks-upload:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: LuaRocks Upload
|
||||
uses: nvim-neorocks/luarocks-tag-release@v5
|
||||
env:
|
||||
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
|
||||
with:
|
||||
summary: Nerd Font icons for neovim
|
||||
detailed_description: |
|
||||
Coloured Nerd Font file icons for neovim.
|
||||
|
||||
Dark and light background variants.
|
||||
|
||||
https://www.nerdfonts.com/
|
||||
license: MIT
|
||||
labels: neovim
|
15
.config/nvim/pack/tree/start/nvim-web-devicons/.github/workflows/semantic-pr-subject.yml
vendored
Normal file
15
.config/nvim/pack/tree/start/nvim-web-devicons/.github/workflows/semantic-pr-subject.yml
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
name: Semantic Pull Request Subject
|
||||
on:
|
||||
pull_request:
|
||||
types:
|
||||
- opened
|
||||
- reopened
|
||||
- edited
|
||||
- synchronize
|
||||
jobs:
|
||||
semantic-pr-subject:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: amannn/action-semantic-pull-request@v4.5.0
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
Add table
Add a link
Reference in a new issue