This repository has been archived by the owner on Apr 16, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
all: release version
v3.0.0
, see #35
- Loading branch information
Showing
104 changed files
with
7,158 additions
and
4,951 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
{ | ||
"projectName": "doom-nvim", | ||
"projectOwner": "NTBBloodbath", | ||
"repoType": "github", | ||
"repoHost": "https://github.com", | ||
"files": [ | ||
"README.md" | ||
], | ||
"imageSize": 100, | ||
"commit": true, | ||
"commitConvention": "gitmoji", | ||
"contributors": [ | ||
{ | ||
"login": "JohnIrle", | ||
"name": "John Irle", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/11879736?v=4", | ||
"profile": "https://johnirle.com/", | ||
"contributions": [ | ||
"doc" | ||
] | ||
}, | ||
{ | ||
"login": "bketelsen", | ||
"name": "Brian Ketelsen", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/37492?v=4", | ||
"profile": "http://www.brianketelsen.com/", | ||
"contributions": [ | ||
"code", | ||
"bug" | ||
] | ||
}, | ||
{ | ||
"login": "Samantha-uk", | ||
"name": "Samantha-uk", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/45871296?v=4", | ||
"profile": "https://github.com/Samantha-uk", | ||
"contributions": [ | ||
"doc" | ||
] | ||
}, | ||
{ | ||
"login": "rscircus", | ||
"name": "rscircus", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/1167114?v=4", | ||
"profile": "https://rscircus.github.io/", | ||
"contributions": [ | ||
"doc" | ||
] | ||
}, | ||
{ | ||
"login": "bandithedoge", | ||
"name": "bandithedoge", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/26331682?v=4", | ||
"profile": "http://bandithedoge.com/", | ||
"contributions": [ | ||
"doc" | ||
] | ||
}, | ||
{ | ||
"login": "vhyrro", | ||
"name": "vhyrro", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/76052559?v=4", | ||
"profile": "https://github.com/vhyrro", | ||
"contributions": [ | ||
"code" | ||
] | ||
}, | ||
{ | ||
"login": "Mremmalex", | ||
"name": "Ifeanyichukwu Sampson Ebenezer", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/40169444?v=4", | ||
"profile": "https://github.com/Mremmalex", | ||
"contributions": [ | ||
"bug" | ||
] | ||
}, | ||
{ | ||
"login": "GustavoPrietoP", | ||
"name": "Gustavo Prieto", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/70907734?v=4", | ||
"profile": "https://github.com/GustavoPrietoP", | ||
"contributions": [ | ||
"code" | ||
] | ||
}, | ||
{ | ||
"login": "ZeusThundr", | ||
"name": "ZeusThundr", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/76399616?v=4", | ||
"profile": "https://github.com/ZeusThundr", | ||
"contributions": [ | ||
"bug" | ||
] | ||
}, | ||
{ | ||
"login": "leonistor", | ||
"name": "Leo Nistor", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/310468?v=4", | ||
"profile": "https://github.com/leonistor", | ||
"contributions": [ | ||
"bug" | ||
] | ||
}, | ||
{ | ||
"login": "notusknot", | ||
"name": "notusknot", | ||
"avatar_url": "https://avatars.githubusercontent.com/u/69602000?v=4", | ||
"profile": "https://github.com/notusknot", | ||
"contributions": [ | ||
"doc" | ||
] | ||
} | ||
], | ||
"contributorsPerLine": 7 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Use Lua syntax for doomrc file | ||
doomrc linguist-language=lua | ||
doomrc -linguist-detectable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: format | ||
|
||
on: | ||
push: | ||
paths: '**.lua' | ||
branches: [main, develop] | ||
|
||
jobs: | ||
stylua: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup and run stylua | ||
uses: JohnnyMorganz/[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
args: --config-path=stylua.toml -g *.lua -g !doomrc.lua -- . | ||
- name: Commit files | ||
run: | | ||
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
git config --local user.name "github-actions[bot]" | ||
if [[ ! -z $(git status -s) ]]; then | ||
git add *.lua lua/ | ||
git commit -m "Format lua files" | ||
fi | ||
- name: Push formatted files | ||
uses: ad-m/github-push-action@master | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
branch: ${{ github.ref }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: lint | ||
|
||
on: | ||
push: | ||
paths: '**.lua' | ||
branches: [main, develop] | ||
pull_request: | ||
paths: '**.lua' | ||
types: [opened, synchronize] | ||
|
||
jobs: | ||
selene: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup and run selene | ||
uses: NTBBloodbath/[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
args: "." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# My temp files | ||
logs/ | ||
plugin/ | ||
sessions/ | ||
logs/doom.log | ||
time_cost.txt | ||
# Backup files | ||
.doom_releases | ||
.doom_backup_hash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.