Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
all: release version v3.0.0, see #35
Browse files Browse the repository at this point in the history
  • Loading branch information
NTBBloodbath committed Jul 11, 2021
2 parents 3aa7849 + dc83874 commit 0ba7c38
Show file tree
Hide file tree
Showing 104 changed files with 7,158 additions and 4,951 deletions.
115 changes: 115 additions & 0 deletions .all-contributorsrc
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
}
3 changes: 3 additions & 0 deletions .gitattributes
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
30 changes: 30 additions & 0 deletions .github/workflows/format.yml
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 }}
20 changes: 20 additions & 0 deletions .github/workflows/lint.yml
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: "."
6 changes: 4 additions & 2 deletions .gitignore
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
47 changes: 46 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,50 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.0.0] - 2021-07-11

### Added

- `:DoomRollback` command, easily rollback to a previous Doom Nvim version
(main branch, a.k.a stable) or a previous commit (development branch).
- Dynamic statusline colors (WIP)
- More automation, plugins configurations will automatically take effect
and the plugins will be automatically installed or uninstalled too, say bye
to `PackerClean` and `PackerInstall` commands!
- The language servers can be automatically installed now by adding a `+lsp`
flag in the `doomrc` languages field, e.g. for adding `rust` support and adding
`rust-analyzer`: `'rust +lsp'`.
- Plugins:
- Added `neorg`, `range-highlight`, `neogit` and more plugins!
- Added initial built-in plugins for compiling and running your projects,
see [modules](./docs/modules.md) for more information.

### Changed

- Our `doom-one` colorscheme have been rewritten and is now pure Lua!
- Reduced average startuptime from 400ms to 40ms (depends on the hardware!)
- Vim macros can be optionally disabled now, see related issue: #31
- Doom Nvim has been restructured, it's more robust and maintainable now.
- No more non-sense global wrappers around the Neovim Lua API, everything
should have their own scope.
- Our `:DoomUpdate` command is now better, say bye to those annoying merging
issues when there were huge changes.
- New statusline look and feel
- New logging system powered by [vlog](https://github.com/tjdevries/vlog).
- `packer.nvim` bootstrapping is now handled internally.
- Plugins:
- We are now using `bufferline` instead of `barbar.nvim`.
- We are now using `rest.nvim` as our HTTP client instead of `dot-http`.
- We are now using `LuaSnip` + `friendly-snippets` instead of `snippets.nvim`.

### Deleted

- LSP kind plugin, the symbols kinds can be managed with the Lua API.

### Fixed

- Some issues on first launch related to plugins.

## [2.3.6] - 2021-07-11

### Fixed
Expand Down Expand Up @@ -314,7 +358,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial stable release

[unreleased]: https://github.com/NTBBloodbath/doom-nvim/compare/v2.3.6...develop
[unreleased]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.0...develop
[3.0.0]: https://github.com/NTBBloodbath/doom-nvim/compare/v2.3.6...v3.0.0
[2.3.6]: https://github.com/NTBBloodbath/doom-nvim/compare/v2.3.5...v2.3.6
[2.3.5]: https://github.com/NTBBloodbath/doom-nvim/compare/v2.3.4...v2.3.5
[2.3.4]: https://github.com/NTBBloodbath/doom-nvim/compare/v2.3.3...v2.3.4
Expand Down
22 changes: 11 additions & 11 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,23 @@ diverse, inclusive, and healthy community.
Examples of behavior that contributes to a positive environment for our
community include:

* Demonstrating empathy and kindness toward other people
* Being respectful of differing opinions, viewpoints, and experiences
* Giving and gracefully accepting constructive feedback
* Accepting responsibility and apologizing to those affected by our mistakes,
- Demonstrating empathy and kindness toward other people
- Being respectful of differing opinions, viewpoints, and experiences
- Giving and gracefully accepting constructive feedback
- Accepting responsibility and apologizing to those affected by our mistakes,
and learning from the experience
* Focusing on what is best not just for us as individuals, but for the
- Focusing on what is best not just for us as individuals, but for the
overall community

Examples of unacceptable behavior include:

* The use of sexualized language or imagery, and sexual attention or
- The use of sexualized language or imagery, and sexual attention or
advances of any kind
* Trolling, insulting or derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or email
- Trolling, insulting or derogatory comments, and personal or political attacks
- Public or private harassment
- Publishing others' private information, such as a physical or email
address, without their explicit permission
* Other conduct which could reasonably be considered inappropriate in a
- Other conduct which could reasonably be considered inappropriate in a
professional setting

## Enforcement Responsibilities
Expand Down Expand Up @@ -106,7 +106,7 @@ Violating these terms may lead to a permanent ban.
### 4. Permanent Ban

**Community Impact**: Demonstrating a pattern of violation of community
standards, including sustained inappropriate behavior, harassment of an
standards, including sustained inappropriate behavior, harassment of an
individual, or aggression toward or disparagement of classes of individuals.

**Consequence**: A permanent ban from any sort of public interaction within
Expand Down
Loading

0 comments on commit 0ba7c38

Please sign in to comment.