-
-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nordtheme
organization migration (#14)
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-13
- Loading branch information
Showing
26 changed files
with
7,722 additions
and
84 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,27 @@ | ||
# Copyright (c) 2016-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the license file. | ||
|
||
# Configurations for EditorConfig. | ||
# See https://editorconfig.org/#file-format-details for more details. | ||
|
||
# +--------------------+ | ||
# + Base Configuration + | ||
# +--------------------+ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
max_line_length = 160 | ||
trim_trailing_whitespace = true | ||
|
||
# +-----------+ | ||
# + Languages + | ||
# +-----------+ | ||
# +--- Markdown ---+ | ||
[*.{md}] | ||
max_line_length = off | ||
trim_trailing_whitespace = false |
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,16 @@ | ||
# Copyright (c) 2016-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the license file. | ||
|
||
# Path match pattern to ignore (i.e. not lint) certain files and folders. | ||
# References: | ||
# 1. https://eslint.org/docs/latest/use/configure/ignore | ||
|
||
node_modules/ | ||
|
||
# Explicitly include specific "dotfiles". | ||
# ESLint automatically applies ignore pattern for "dotfiles" by default to prevent accidentally lint over paths like | ||
# `.git` or any other critical paths. | ||
!**/.eslintrc.js | ||
!.remarkrc.js | ||
!lint-staged.config.js | ||
!prettier.config.js |
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,24 @@ | ||
/* | ||
* Copyright (c) 2016-present Sven Greb <[email protected]> | ||
* This source code is licensed under the MIT license found in the license file. | ||
*/ | ||
|
||
/** | ||
* Configurations for ESLint. | ||
* @see https://eslint.org/docs/latest/use/configure | ||
* @see https://eslint.org/docs/latest/use/configure/#using-configuration-files | ||
* @see https://eslint.org/docs/latest/use/configure/#specifying-environments | ||
* @see https://eslint.org/docs/latest/rules | ||
*/ | ||
module.exports = { | ||
root: true, | ||
extends: ["@arcticicestudio/eslint-config-base", "@arcticicestudio/eslint-config-base/prettier"], | ||
overrides: [ | ||
{ | ||
files: ["*.js"], | ||
rules: { | ||
"capitalized-comments": "off", | ||
}, | ||
}, | ||
], | ||
}; |
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,18 @@ | ||
# Copyright (c) 2016-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the license file. | ||
|
||
# Configuration to define attributes per path. | ||
# | ||
# References: | ||
# 1. https://git-scm.com/docs/gitattributes | ||
# 2. https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes#Keyword-Expansion | ||
|
||
# Automatically perform line feed (LF) normalization for files detected as text and | ||
# leave all files detected as binary untouched. | ||
* text=auto eol=lf | ||
|
||
# +--------+ | ||
# + Assets + | ||
# +--------+ | ||
*.ai binary | ||
*.png binary |
Validating CODEOWNERS rules …
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,14 @@ | ||
# Copyright (c) 2016-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the license file. | ||
|
||
# Configuration for the GitHub feature to automatically request reviews from the code owners | ||
# when a pull request changes any owned files. | ||
# | ||
# References: | ||
# 1. https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#codeowners-file-location | ||
# 2. https://github.com/blog/2392-introducing-code-owners | ||
|
||
# +----------------------+ | ||
# + Core Team Code Owner + | ||
# +----------------------+ | ||
* @svengreb |
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,10 @@ | ||
# Copyright (c) 2016-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the license file. | ||
|
||
# Path match pattern to intentionally ignore untracked files and directories. | ||
# See https://git-scm.com/docs/gitignore for more details. | ||
|
||
# +---------+ | ||
# + Node.js + | ||
# +---------+ | ||
node_modules/ |
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,8 @@ | ||
#!/bin/sh | ||
|
||
# Copyright (c) 2016-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the license file. | ||
|
||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npm exec lint-staged |
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,8 @@ | ||
# Copyright (c) 2016-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the license file. | ||
|
||
# Configuration for the Git mail mapping feature to coalesce together commits by the same person in the shortlog, | ||
# where their name and/or email address was spelled differently or has been changed. | ||
# See https://git-scm.com/docs/git-shortlog#_mapping_authors for more details. | ||
Sven Greb <[email protected]> | ||
Sven Greb <[email protected]> <[email protected]> |
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,18 @@ | ||
# Copyright (c) 2016-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the license file. | ||
|
||
# Configurations for npm. | ||
# See https://docs.npmjs.com/cli/v7/configuring-npm/npmrc for more details. | ||
|
||
# Only use a lockfile for single-consumer projects, like applications, but not for multi-consumer projects like | ||
# libraries. | ||
# It helps to pin dependency versions, improves the security through integrity checksums, prevents possible errors | ||
# caused by updated transitive dependencies and allows to get deterministic build results, but it can hide problems in | ||
# multi-consumer projects when any later versions of a used dependency, or its transitive dependencies, is not | ||
# compatible with the own project anymore. | ||
package-lock=true | ||
|
||
# Do not resolve to the latest minor and patch updates. | ||
# Automatically pin dependencies to exact versions instead of resolving to latest minor and patch updates. | ||
# This prevents possible errors caused by updated transitive dependencies. | ||
save-exact=true |
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,10 @@ | ||
# Copyright (c) 2016-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the license file. | ||
|
||
# Path match pattern to ignore (i.e. not reformat) certain files and folders. | ||
# See https://prettier.io/docs/en/ignore for more details. | ||
|
||
**/*.ai | ||
**/*.png | ||
.husky/_/ | ||
node_modules/ |
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,7 @@ | ||
# Copyright (c) 2016-present Sven Greb <[email protected]> | ||
# This source code is licensed under the MIT license found in the license file. | ||
|
||
# Path match pattern to ignore when searching for files. | ||
# See https://github.com/unifiedjs/unified-engine/blob/HEAD/doc/ignore.md for more details. | ||
|
||
node_modules/ |
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,13 @@ | ||
/* | ||
* Copyright (c) 2016-present Sven Greb <[email protected]> | ||
* This source code is licensed under the MIT license found in the license file. | ||
*/ | ||
|
||
/** | ||
* Configurations for remark-lint. | ||
* @see https://github.com/remarkjs/remark-lint | ||
* @see https://remark.js.org | ||
*/ | ||
module.exports = { | ||
plugins: ["@arcticicestudio/remark-preset-lint"], | ||
}; |
This file was deleted.
Oops, something went wrong.
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,83 @@ | ||
<p align="center"> | ||
<a href="https://www.nordtheme.com/ports/iterm2" target="_blank"> | ||
<picture> | ||
<source srcset="https://raw.githubusercontent.com/nordtheme/iterm2/develop/src/assets/nord-iterm2-banner.svg?sanitize=true" width="100%" media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)" /> | ||
<img srcset="https://raw.githubusercontent.com/nordtheme/iterm2/develop/src/assets/nord-iterm2-banner.svg?sanitize=true" width="100%" /> | ||
</picture> | ||
</a> | ||
</p> | ||
|
||
<p align="center"> | ||
<a href="https://www.nordtheme.com/docs/ports/iterm2" target="_blank"> | ||
<img src="https://img.shields.io/github/release/nordtheme/iterm2.svg?style=flat-square&label=Docs&colorA=4c566a&colorB=88c0d0&logo=data%3Aimage%2Fsvg%2Bxml%3Bbase64%2CPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI%2BCiAgICA8cGF0aCBmaWxsPSIjZDhkZWU5IiBkPSJNMTMuNzQ2IDIuODEzYS42Ny42NyAwIDAgMC0uNTU5LS4xMzNMOCAzLjg0OGwtNS4xODgtMS4xOGEuNjY5LjY2OSAwIDAgMC0uNTcuMTMzLjY3Ny42NzcgMCAwIDAtLjI0Mi41MzF2OC4xMzNjLS4wMDguMzIuMjEuNTk4LjUyLjY2OGw1LjMzMiAxLjE5OWguMjk2bDUuMzMyLTEuMmEuNjY4LjY2OCAwIDAgMCAuNTItLjY2N1YzLjMzMmEuNjU5LjY1OSAwIDAgMC0uMjU0LS41MnpNMy4zMzIgNC4xNjhsNCAuODk4djYuNzY2bC00LS44OTh6bTkuMzM2IDYuNzY2bC00IC44OThWNS4wNjZsNC0uODk4em0wIDAiLz4KPC9zdmc%2BCg%3D%3D"/> | ||
</a> | ||
</p> | ||
|
||
<p align="center"> | ||
<a href="https://github.com/nordtheme/nord/releases/tag/v0.2.0" target="_blank"> | ||
<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"/> | ||
</a> | ||
</p> | ||
|
||
--- | ||
|
||
# 0.2.0 | ||
|
||
_2017-01-09_ | ||
|
||
## Improvements | ||
|
||
❯ Characters under block cursors are now colored darker (`nord1`) while the block cursor is visible to achieve a optimal contrast and to avoid unreadability due to the same cursor- and foreground color (`nord4`). (@svengreb / @kepbod, #2, 8b6e64b0) | ||
|
||
<p align="center"> | ||
<strong>Before</strong><br /> | ||
<picture> | ||
<img src="https://cloud.githubusercontent.com/assets/7836623/21782939/83fc004c-d6b5-11e6-84ac-a05fdee61fa5.png"/><br /> | ||
</picture> | ||
<strong>After</strong><br /> | ||
<picture> | ||
<img src="https://cloud.githubusercontent.com/assets/7836623/21782954/942b03aa-d6b5-11e6-9f52-af2a2d737b1a.png"/> | ||
</picture> | ||
</p> | ||
|
||
### Documentation | ||
|
||
❯ Added a screenshot to the README [activation](https://github.com/nordtheme/iterm2/blob/develop/README.md#activation) description (@svengreb, 669c307d) | ||
|
||
# 0.1.0 | ||
|
||
_2016-11-22_ | ||
|
||
## Features | ||
|
||
❯ Implemented the main XML (Property List) color scheme file [`Nord.itermcolors`](https://github.com/nordtheme/iterm2/blob/develop/src/xml/Nord.itermcolors). (@svengreb, #1, 80d14907) | ||
|
||
![](https://raw.githubusercontent.com/nordtheme/iterm2/develop/src/assets/scrot-colortest.png) | ||
![](https://raw.githubusercontent.com/nordtheme/iterm2/develop/src/assets/scrot-htop.png) | ||
|
||
Detailed information about features, supported languages and install instructions can be found in the [README](https://github.com/nordtheme/iterm2/blob/develop/README.md#installation) and in the [project wiki](https://github.com/nordtheme/iterm2/wiki). | ||
|
||
# 0.0.0 (2016-11-22) | ||
|
||
**Project Initialization** | ||
|
||
<p align="center"> | ||
<picture> | ||
<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)" /> | ||
<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)" /> | ||
<img src="https://raw.githubusercontent.com/nordtheme/assets/main/static/images/elements/separators/iceberg/footer/dark/spaced.svg" width="100%" /> | ||
</picture> | ||
</p> | ||
|
||
<p align="center"> | ||
Copyright © 2016-present <a href="https://www.svengreb.de" target="_blank">Sven Greb</a> | ||
</p> | ||
|
||
<p align="center"> | ||
<a href="https://github.com/nordtheme/iterm2/blob/develop/license" target="_blank"> | ||
<img src="https://img.shields.io/static/v1.svg?style=flat-square&label=License&message=MIT&logoColor=eceff4&colorA=4c566a&colorB=88c0d0"/> | ||
</a> | ||
<a href="https://www.svengreb.de"> | ||
<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"/> | ||
</a> | ||
</p> |
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,7 +1,6 @@ | ||
MIT License (MIT) | ||
|
||
Copyright (c) 2016-present Arctic Ice Studio <[email protected]> (http://arcticicestudio.com) | ||
Copyright (c) 2016-present Sven Greb <[email protected]> (http://svengreb.de) | ||
Copyright (c) 2016-present Sven Greb <[email protected]> (https://www.svengreb.de) | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
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,15 @@ | ||
/* | ||
* Copyright (c) 2016-present Sven Greb <[email protected]> | ||
* This source code is licensed under the MIT license found in the license file. | ||
*/ | ||
|
||
/** | ||
* Configurations for lint-staged. | ||
* @see https://github.com/okonet/lint-staged#configuration | ||
*/ | ||
module.exports = { | ||
"*.{itermcolors,json,svg}": "prettier --check --ignore-unknown --no-editorconfig", | ||
"*.js": ["eslint", "prettier --check --ignore-unknown --no-editorconfig"], | ||
"*.md": ["remark --no-stdout", "prettier --check --ignore-unknown --no-editorconfig"], | ||
".husky/pre-*": "prettier --check --ignore-unknown --no-editorconfig", | ||
}; |
Oops, something went wrong.