Skip to content

Commit f938659

Browse files
committed
nordtheme organization migration (#34)
As part of the "Northern Post - The state and roadmap of Nord" [1] announcement, this repository will be migrated to the `nordtheme` GitHub organization [2]. This issue is a task of the nordtheme/nord#185 [3] epic (tasklist [4]). [1]: https://github.com/orgs/nordtheme/discussions/183 [2]: https://github.com/nordtheme [3]: nordtheme/nord#185 [4]: https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/about-task-lists GH-33
1 parent 3bb39aa commit f938659

22 files changed

+7739
-99
lines changed

.editorconfig

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Copyright (c) 2016-present Sven Greb <development@svengreb.de>
2+
# This source code is licensed under the MIT license found in the license file.
3+
4+
# Configurations for EditorConfig.
5+
# See https://editorconfig.org/#file-format-details for more details.
6+
7+
# +--------------------+
8+
# + Base Configuration +
9+
# +--------------------+
10+
root = true
11+
12+
[*]
13+
charset = utf-8
14+
end_of_line = lf
15+
indent_size = 2
16+
indent_style = space
17+
insert_final_newline = true
18+
max_line_length = 160
19+
trim_trailing_whitespace = true
20+
21+
# +-----------+
22+
# + Languages +
23+
# +-----------+
24+
# +--- Markdown ---+
25+
[*.{md}]
26+
max_line_length = off
27+
trim_trailing_whitespace = false

.eslintignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Copyright (c) 2016-present Sven Greb <development@svengreb.de>
2+
# This source code is licensed under the MIT license found in the license file.
3+
4+
# Path match pattern to ignore (i.e. not lint) certain files and folders.
5+
# References:
6+
# 1. https://eslint.org/docs/latest/use/configure/ignore
7+
8+
node_modules/
9+
10+
# Explicitly include specific "dotfiles".
11+
# ESLint automatically applies ignore pattern for "dotfiles" by default to prevent accidentally lint over paths like
12+
# `.git` or any other critical paths.
13+
!**/.eslintrc.js
14+
!.remarkrc.js
15+
!.stylelintrc.js
16+
!lint-staged.config.js
17+
!prettier.config.js

.eslintrc.js

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/*
2+
* Copyright (c) 2016-present Sven Greb <development@svengreb.de>
3+
* This source code is licensed under the MIT license found in the license file.
4+
*/
5+
6+
/**
7+
* Configurations for ESLint.
8+
* @see https://eslint.org/docs/latest/use/configure
9+
* @see https://eslint.org/docs/latest/use/configure/#using-configuration-files
10+
* @see https://eslint.org/docs/latest/use/configure/#specifying-environments
11+
* @see https://eslint.org/docs/latest/rules
12+
*/
13+
module.exports = {
14+
root: true,
15+
extends: ["@arcticicestudio/eslint-config-base", "@arcticicestudio/eslint-config-base/prettier"],
16+
overrides: [
17+
{
18+
files: ["*.js"],
19+
rules: {
20+
"capitalized-comments": "off",
21+
},
22+
},
23+
],
24+
};

.gitattributes

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Copyright (c) 2016-present Sven Greb <development@svengreb.de>
2+
# This source code is licensed under the MIT license found in the license file.
3+
4+
# Configuration to define attributes per path.
5+
#
6+
# References:
7+
# 1. https://git-scm.com/docs/gitattributes
8+
# 2. https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes#Keyword-Expansion
9+
10+
# Automatically perform line feed (LF) normalization for files detected as text and
11+
# leave all files detected as binary untouched.
12+
* text=auto eol=lf
13+
14+
# +--------+
15+
# + Assets +
16+
# +--------+
17+
*.ai binary
18+
*.png binary

.github/codeowners

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Copyright (c) 2016-present Sven Greb <development@svengreb.de>
2+
# This source code is licensed under the MIT license found in the license file.
3+
4+
# Configuration for the GitHub feature to automatically request reviews from the code owners
5+
# when a pull request changes any owned files.
6+
#
7+
# References:
8+
# 1. https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#codeowners-file-location
9+
# 2. https://github.com/blog/2392-introducing-code-owners
10+
11+
# +----------------------+
12+
# + Core Team Code Owner +
13+
# +----------------------+
14+
* @svengreb

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Copyright (c) 2016-present Sven Greb <development@svengreb.de>
2+
# This source code is licensed under the MIT license found in the license file.
3+
4+
# Path match pattern to intentionally ignore untracked files and directories.
5+
# See https://git-scm.com/docs/gitignore for more details.
6+
7+
# +---------+
8+
# + Node.js +
9+
# +---------+
10+
node_modules/

.husky/pre-commit

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/sh
2+
3+
# Copyright (c) 2016-present Sven Greb <development@svengreb.de>
4+
# This source code is licensed under the MIT license found in the license file.
5+
6+
. "$(dirname "$0")/_/husky.sh"
7+
8+
npm exec lint-staged

.mailmap

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Copyright (c) 2016-present Sven Greb <development@svengreb.de>
2+
# This source code is licensed under the MIT license found in the license file.
3+
4+
# Configuration for the Git mail mapping feature to coalesce together commits by the same person in the shortlog,
5+
# where their name and/or email address was spelled differently or has been changed.
6+
# See https://git-scm.com/docs/git-shortlog#_mapping_authors for more details.
7+
Sven Greb <development@svengreb.de>
8+
Sven Greb <development@svengreb.de> <development@arcticicestudio.com>

.npmrc

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Copyright (c) 2016-present Sven Greb <development@svengreb.de>
2+
# This source code is licensed under the MIT license found in the license file.
3+
4+
# Configurations for npm.
5+
# See https://docs.npmjs.com/cli/v7/configuring-npm/npmrc for more details.
6+
7+
# Only use a lockfile for single-consumer projects, like applications, but not for multi-consumer projects like
8+
# libraries.
9+
# It helps to pin dependency versions, improves the security through integrity checksums, prevents possible errors
10+
# caused by updated transitive dependencies and allows to get deterministic build results, but it can hide problems in
11+
# multi-consumer projects when any later versions of a used dependency, or its transitive dependencies, is not
12+
# compatible with the own project anymore.
13+
package-lock=true
14+
15+
# Do not resolve to the latest minor and patch updates.
16+
# Automatically pin dependencies to exact versions instead of resolving to latest minor and patch updates.
17+
# This prevents possible errors caused by updated transitive dependencies.
18+
save-exact=true

.prettierignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Copyright (c) 2016-present Sven Greb <development@svengreb.de>
2+
# This source code is licensed under the MIT license found in the license file.
3+
4+
# Path match pattern to ignore (i.e. not reformat) certain files and folders.
5+
# See https://prettier.io/docs/en/ignore for more details.
6+
7+
node_modules/*
8+
.husky/_/

.remarkignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Copyright (c) 2016-present Sven Greb <development@svengreb.de>
2+
# This source code is licensed under the MIT license found in the license file.
3+
4+
# Path match pattern to ignore when searching for files.
5+
# See https://github.com/unifiedjs/unified-engine/blob/HEAD/doc/ignore.md for more details.
6+
7+
node_modules/*

.remarkrc.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/*
2+
* Copyright (c) 2016-present Sven Greb <development@svengreb.de>
3+
* This source code is licensed under the MIT license found in the license file.
4+
*/
5+
6+
/**
7+
* Configurations for remark-lint.
8+
* @see https://github.com/remarkjs/remark-lint
9+
* @see https://remark.js.org
10+
*/
11+
module.exports = {
12+
plugins: ["@arcticicestudio/remark-preset-lint"],
13+
};

assets/nord-alacritty-banner.svg

Lines changed: 12 additions & 7 deletions
Loading

changelog.md

Lines changed: 54 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,64 @@
1-
<p align="center"><img src="https://cdn.rawgit.com/arcticicestudio/nord-alacritty/main/assets/nord-alacritty-banner.svg"/></p>
1+
<p align="center">
2+
<a href="https://www.nordtheme.com/ports/alacritty" target="_blank">
3+
<picture>
4+
<source srcset="https://raw.githubusercontent.com/nordtheme/alacritty/main/assets/nord-alacritty-banner.svg?sanitize=true" width="100%" media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)" />
5+
<img srcset="https://raw.githubusercontent.com/nordtheme/alacritty/main/assets/nord-alacritty-banner.svg?sanitize=true" width="100%" />
6+
</picture>
7+
</a>
8+
</p>
29

3-
<p align="center"><a href="https://github.com/arcticicestudio/nord-alacritty/releases/latest" target="_blank"><img src="https://img.shields.io/github/release/arcticicestudio/nord-alacritty.svg?style=flat-square&label=Release&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0"/></a> <a href="https://github.com/arcticicestudio/nord/releases/tag/v0.2.0" target="_blank"><img src="https://img.shields.io/badge/Nord-v0.2.0-88C0D0.svg?style=flat-square&label=Nord&logoColor=eceff4&colorA=4c566a&colorB=88c0d0"/></a></p>
10+
<p align="center">
11+
<a href="https://github.com/nordtheme/alacritty/releases/latest" target="_blank">
12+
<img src="https://img.shields.io/github/release/nordtheme/alacritty.svg?style=flat-square&label=Release&logo=github&logoColor=eceff4&colorA=4c566a&colorB=88c0d0"/>
13+
</a>
14+
<a href="https://www.nordtheme.com/docs/ports/alacritty" target="_blank">
15+
<img src="https://img.shields.io/github/release/nordtheme/alacritty.svg?style=flat-square&label=Docs&colorA=4c566a&colorB=88c0d0&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI%2BCiAgICA8cGF0aCBmaWxsPSIjZDhkZWU5IiBkPSJNMTMuNzQ2IDIuODEzYS42Ny42NyAwIDAgMC0uNTU5LS4xMzNMOCAzLjg0OGwtNS4xODgtMS4xOGEuNjY5LjY2OSAwIDAgMC0uNTcuMTMzLjY3Ny42NzcgMCAwIDAtLjI0Mi41MzF2OC4xMzNjLS4wMDguMzIuMjEuNTk4LjUyLjY2OGw1LjMzMiAxLjE5OWguMjk2bDUuMzMyLTEuMmEuNjY4LjY2OCAwIDAgMCAuNTItLjY2N1YzLjMzMmEuNjU5LjY1OSAwIDAgMC0uMjU0LS41MnpNMy4zMzIgNC4xNjhsNCAuODk4djYuNzY2bC00LS44OTh6bTkuMzM2IDYuNzY2bC00IC44OThWNS4wNjZsNC0uODk4em0wIDAiLz4KPC9zdmc%2BCg%3D%3D"/>
16+
</a>
17+
</p>
418

5-
---
19+
<p align="center">
20+
<a href="https://github.com/nordtheme/nord/releases/tag/v0.2.0" target="_blank">
21+
<img src="https://img.shields.io/static/v1.svg?style=flat-square&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAACUklEQVRIibXUQUiTcRjH8e+zvaO0AgPd1mDmNvFVI+ng1UNU1wiDoEIIoUNUdOkQUkER1KWTnRJCLyZBIdEhQvAWQVp5KN9X3bskmHunYbeZbu/TaWXRdOLrc3ue5/f/f/6nP+xwycy8m6y0LGqg0N7UsLB+9jmdbQwZQaNawPBKpCstA3g/7fRCl5k68P7PLNjplRgBQtUAYjmuCriqDP690RqQK8A3WSt1mmZsqbyyM+4pVc5tcvdxYD+W46qVdif/l7Ac95bluGo57piqBqt58e+zaXfSclwNbBQyE+F7KKPAMTuzeGcrQLk2BEREV41dvYAD2jeddrt9BQA6DtYtC3QDKyIM2pmlVl+Bublc2ExGpgS9BuxTLT2byuX2+AYUJTAyPq6GmYwOIPoEOLy7IAO+AYgejTW5dwF2UbiM8kGVs9NO/qo/AGRV5Ybl5E4mEokVT0rdwHdBH9pOvmvbgCd6GlgDGZqddVPtydg8aC9gKDqybaA9EX2nyHWgrhTkxUQ2W9uajL4U0QdAbNsAQFsy3C8wBHTsXQk+BmhpitwE3vgCANSGVi8pfATO207uooh4hqc9vgHxeLzgeXIG+KFIv5Ve7GxujuZ9AwAONYfnVLUHCCHec9vO1vsKALSloq9A7gONhILDm/2yWwYAzETDbeC1wgk7k+/bKCuW4yqwDIxtGBSGzURktNzbdrZeQ8EJIA76CJXCP/kLCpEyUE2VVLWnLRV9Wh7MZPJHPNW3QE2lQ0YgSKpKgLWiV1zftyTCn758XUwZ4lUEdrx+ASW88rx2UJY8AAAAAElFTkSuQmCC&label=Nord&message=v0.2.0&colorA=4c566a&colorB=88c0d0"/>
22+
</a>
23+
</p>
624

725
# 0.1.0
826

9-
![Release Date: 2017-10-07](https://img.shields.io/badge/Release_Date-2017--10--07-88C0D0.svg?style=flat-square) [![Project Board](https://img.shields.io/badge/Project_Board-0.1.0-88C0D0.svg?style=flat-square)](https://github.com/arcticicestudio/nord-alacritty/projects/2) [![Milestone](https://img.shields.io/badge/Milestone-0.1.0-88C0D0.svg?style=flat-square)](https://github.com/arcticicestudio/nord-alacritty/milestone/1)
27+
![Release Date: 2017-10-07](https://img.shields.io/badge/Release_Date-2017--10--07-88C0D0.svg?style=flat-square) [![Project Board](https://img.shields.io/badge/Project_Board-0.1.0-88C0D0.svg?style=flat-square)](https://github.com/orgs/nordtheme/projects/1/views/10) [![Milestone](https://img.shields.io/badge/Milestone-0.1.0-88C0D0.svg?style=flat-square)](https://github.com/nordtheme/alacritty/milestone/1)
1028

1129
## Features
1230

13-
Implemented the main color scheme file [`nord.yml`](https://github.com/arcticicestudio/nord-alacritty/blob/main/src/nord.yml). (@arcticicestudio, #1 in PR #2, 6e457657)
31+
Implemented the main color scheme file [`nord.yml`](https://github.com/nordtheme/alacritty/blob/main/src/nord.yaml). (@svengreb, #1 in PR #2, 6e457657)
1432

15-
Detailed information about features and install instructions can be found in the [README](https://github.com/arcticicestudio/nord-alacritty/blob/main/readme.md#installation) and in the [project wiki](https://github.com/arcticicestudio/nord-alacritty/wiki).
33+
Detailed information about features and install instructions can be found in the [README](https://github.com/nordtheme/alacritty/blob/main/readme.md#installation).
1634

17-
<p align="center"><img src="https://raw.githubusercontent.com/arcticicestudio/nord-alacritty/main/assets/scrot-hero.png"/><br><strong>htop</strong><br><img src="https://raw.githubusercontent.com/arcticicestudio/nord-alacritty/main/assets/scrot-htop.png"/></p>
35+
<p align="center">
36+
<picture>
37+
<img src="https://raw.githubusercontent.com/nordtheme/alacritty/main/assets/scrot-hero.png"/><br />
38+
</picture>
39+
<strong>htop</strong><br />
40+
<picture>
41+
<img src="https://raw.githubusercontent.com/nordtheme/alacritty/main/assets/scrot-htop.png"/>
42+
</picture>
43+
</p>
44+
45+
<p align="center">
46+
<picture>
47+
<source srcset="https://raw.githubusercontent.com/nordtheme/assets/main/static/images/elements/separators/iceberg/footer/dark/spaced.svg" width="100%" media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)" />
48+
<source srcset="https://raw.githubusercontent.com/nordtheme/assets/main/static/images/elements/separators/iceberg/footer/light/spaced.svg" width="100%" media="(prefers-color-scheme: dark)" />
49+
<img src="https://raw.githubusercontent.com/nordtheme/assets/main/static/images/elements/separators/iceberg/footer/dark/spaced.svg" width="100%" />
50+
</picture>
51+
</p>
52+
53+
<p align="center">
54+
Copyright &copy; 2016-present <a href="https://www.svengreb.de" target="_blank">Sven Greb</a>
55+
</p>
56+
57+
<p align="center">
58+
<a href="https://github.com/nordtheme/alacritty/blob/main/license" target="_blank">
59+
<img src="https://img.shields.io/static/v1.svg?style=flat-square&label=License&message=MIT&logoColor=eceff4&colorA=4c566a&colorB=88c0d0"/>
60+
</a>
61+
<a href="https://www.svengreb.de">
62+
<img src="https://img.shields.io/static/v1.svg?style=flat-square&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAABMklEQVQ4jcWQvUoDQRRGz52s5IfVIiDWPkGKFFaCIVaGdIagjcFAwICFb7DvIK6QQlNpY2UQLMQVBbEQ0SewFkGbKCQmOzaTJay7/lR+zTAf9xwuF/47Mv45rdezqWEq72v/RWZnHgqOMwDwHMfSj085JSqb6Pu38we7r18E3nqzhmYbsE11rxKsAvhDfQiSM30XYbOw57YDwfnaRl6U3ABWaMNn806H+oGPzBX3d+4UgChZiYBHYBgGsBLoKoAyhR0x9G20Zmpc4P1ZoMQDcwMNclFrdhBKv6M5WWi7ZQGtjEUn35IV4OwnVjSX/WGmKqCDDUa5rmyle3bvGFiMg3WGUsF1u0EXHoqTRMGRgkAy2eugKZrqijRLYThWANBpNDL2h3UE0J0YLJdbrfe42f/NJ0wqY7/KcXKPAAAAAElFTkSuQmCC&label=lovely%20crafted%20in&message=Germany&colorA=4c566a&colorB=88c0d0"/>
63+
</a>
64+
</p>

0 commit comments

Comments
 (0)