Skip to content

Commit 684c345

Browse files
authored
nordtheme organization migration (nordtheme#336)
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 nordthemeGH-335
1 parent 0748955 commit 684c345

File tree

14 files changed

+6164
-118
lines changed

14 files changed

+6164
-118
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 <[email protected]>
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

.gitattributes

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Copyright (c) 2016-present Sven Greb <[email protected]>
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

.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 <[email protected]>
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 <[email protected]>
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/

.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 <[email protected]>
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 <[email protected]>
8+

.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 <[email protected]>
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

autoload/airline/themes/nord.vim

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
" Copyright (C) 2016-present Arctic Ice Studio <[email protected]>
2-
" Copyright (C) 2016-present Sven Greb <[email protected]>
3-
4-
" Project: Nord Vim
5-
" Repository: https://github.com/arcticicestudio/nord-vim
6-
" License: MIT
1+
" Copyright (c) 2016-present Sven Greb <[email protected]>
2+
" This source code is licensed under the MIT license found in the license file.
73

84
let s:nord_vim_version="0.19.0"
95
let g:airline#themes#nord#palette = {}

autoload/lightline/colorscheme/nord.vim

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
" Copyright (C) 2016-present Arctic Ice Studio <[email protected]>
2-
" Copyright (C) 2016-present Sven Greb <[email protected]>
3-
4-
" Project: Nord Vim
5-
" Repository: https://github.com/arcticicestudio/nord-vim
6-
" License: MIT
1+
" Copyright (c) 2016-present Sven Greb <[email protected]>
2+
" This source code is licensed under the MIT license found in the license file.
73

84
let s:nord_vim_version="0.19.0"
95
let s:p = {'normal': {}, 'inactive': {}, 'insert': {}, 'replace': {}, 'visual': {}, 'tabline': {}}

0 commit comments

Comments
 (0)