From 5d63820776ec9b5fd75199d049e40ea439acbff7 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sun, 29 Jan 2017 09:37:40 +0100 Subject: [PATCH 01/14] GHI-#13 Implement global configuration to support italic comments --- colors/nord.vim | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/colors/nord.vim b/colors/nord.vim index 67f0a3f7..0bebfb12 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -48,7 +48,16 @@ let s:nord13_term = "3" let s:nord14_term = "2" let s:nord15_term = "5" +if !exists('g:nord_italic_comments') + let g:nord_italic_comments = 0 +endif + function! s:hi(group, guifg, guibg, ctermfg, ctermbg, attr, guisp) + let l:attr = a:attr + if g:nord_italic_comments == 0 && l:attr ==? 'italic' + let l:attr= 'NONE' + endif + if a:guifg != "" exec "hi " . a:group . " guifg=" . a:guifg endif @@ -62,7 +71,7 @@ function! s:hi(group, guifg, guibg, ctermfg, ctermbg, attr, guisp) exec "hi " . a:group . " ctermbg=" . a:ctermbg endif if a:attr != "" - exec "hi " . a:group . " gui=" . a:attr . " cterm=" . a:attr + exec "hi " . a:group . " gui=" . l:attr . " cterm=" . l:attr endif if a:guisp != "" exec "hi " . a:group . " guisp=" . a:guisp @@ -137,7 +146,7 @@ call s:hi("VertSplit", s:nord2_gui, s:nord1_gui, s:nord3_term, s:nord1_term, "NO "+----------------------+ call s:hi("Boolean", s:nord9_gui, "", s:nord9_term, "", "", "") call s:hi("Character", s:nord14_gui, "", s:nord14_term, "", "", "") -call s:hi("Comment", s:nord3_gui, "", s:nord3_term, "", "", "") +call s:hi("Comment", s:nord3_gui, "", s:nord3_term, "", "italic", "") call s:hi("Conditional", s:nord9_gui, "", s:nord9_term, "", "", "") call s:hi("Constant", s:nord4_gui, "", "NONE", "", "", "") call s:hi("Define", s:nord9_gui, "", s:nord9_term, "", "", "") @@ -155,7 +164,7 @@ call s:hi("PreProc", s:nord9_gui, "", s:nord9_term, "", "NONE", "") call s:hi("Repeat", s:nord9_gui, "", s:nord9_term, "", "", "") call s:hi("Special", s:nord4_gui, "", "NONE", "", "", "") call s:hi("SpecialChar", s:nord13_gui, "", s:nord13_term, "", "", "") -call s:hi("SpecialComment", s:nord8_gui, "", s:nord8_term, "", "", "") +call s:hi("SpecialComment", s:nord8_gui, "", s:nord8_term, "", "italic", "") call s:hi("Statement", s:nord9_gui, "", s:nord9_term, "", "", "") call s:hi("StorageClass", s:nord9_gui, "", s:nord9_term, "", "", "") call s:hi("String", s:nord14_gui, "", s:nord14_term, "", "", "") From 8164a2854d83d07aaddd7b3f5bf948a95777d1d7 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sun, 29 Jan 2017 10:24:09 +0100 Subject: [PATCH 02/14] GHI-#13 Write the documentation for italic comments configuration --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 8e60263e..4470316b 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,20 @@ or on specific events. Plug 'arcticicestudio/nord-vim', { 'on': 'NERDTreeToggle' } ``` +### Configuration +All options should be set **before** the [activation](#activation) command! + +#### Italic comments +**This option should only be enabled if your terminal emulator supports italics!** + +Enable to use italic font for all comments. + +To adhere to the Nord style guide this option is disabled by default. +It can be enabled by setting the `g:nord_italic_comments` variable to `1`. +```vim +let g:nord_italic_comments = 1 +``` + ## Plugin Support Nord Vim provides support for many third-party language- and the UI plugins. From 5b058cbf8760131a344c98e85964433133eb2633 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sun, 29 Jan 2017 10:26:08 +0100 Subject: [PATCH 03/14] Add a README table on content --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 8e60263e..53126907 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,21 @@ Nord Vim is a 16 colorspace theme build to run in GUI- and terminal mode with su


Font: Source Code Pro 20px

+ - [Getting started](#getting-started) + - [Installation](#installation) + - [Via plugin/runtimepath manager](#via-pluginruntimepath-manager) + - [Manual](#manual) + - [Activation](#activation) + - [Configuration](#configuration) + - [Italic comments](#italic-comments) + - [Plugin Support](#plugin-support) + - [UI Plugins](#ui-plugins) + - [Language Plugins](#language-plugins) + - [JavaScript](#javascript) + - [Languages](#languages) + - [Development](#development) + - [Contribution](#contribution) + ## Getting started ### Installation **NOTE**: Nord Vim in terminal mode **MUST** be used with the associated terminal emulator theme in order to work properly! From 96fd18a326b1dd3d0094f3ffe13c65c31a83bbb4 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sun, 29 Jan 2017 10:27:33 +0100 Subject: [PATCH 04/14] Use "vim" GFM syntax highlighting for code blocks instead of "sh" --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 53126907..872a5a3c 100644 --- a/README.md +++ b/README.md @@ -49,18 +49,18 @@ Make sure to install one of the currently supported terminal themes listed below #### Via plugin/runtimepath manager I recommend to use [`vim-plug`](https://github.com/junegunn/vim-plug). Add Nord Vim to your `.vimrc` -```sh +```vim Plug 'arcticicestudio/nord-vim' ``` and install via `:PlugInstall`. You can specify the `develop` branch to install the latest development version. -```sh +```vim Plug 'arcticicestudio/nord-vim', { 'branch': 'develop' } ``` A specific version can be installed via git tags. -```sh +```vim Plug 'arcticicestudio/nord-vim', { 'tag': 'v0.3.0' } ``` @@ -73,7 +73,7 @@ git clone git://github.com/arcticicestudio/nord-vim.git [`Vundle`](https://github.com/VundleVim/Vundle.vim) Add Nord Vim to your `.vimrc` -```sh +```vim Plugin 'arcticicestudio/nord-vim' ``` and install via `:PluginInstall`. @@ -83,18 +83,18 @@ and install via `:PluginInstall`. ### Activation Use Nord Vim as your default color theme by adding it to your `.vimrc` -```sh +```vim colorscheme nord ``` or change it on-the-fly by running `:colorscheme nord`. [`vim-plug`](https://github.com/junegunn/vim-plug) also provides options to enable it on-demand for specific languages -```sh +```vim " Activate Nord Vim when editing Java files Plug 'arcticicestudio/nord-vim', { 'for': 'java' } ``` or on specific events. -```sh +```vim " Activate Nord Vim when toggling the NERDTree Plug 'arcticicestudio/nord-vim', { 'on': 'NERDTreeToggle' } ``` From 66d057442b325a902a93f50657358241a6ef9ebb Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sun, 29 Jan 2017 17:34:36 +0100 Subject: [PATCH 05/14] GHI-#17 Implement language groups for AWK --- colors/nord.vim | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/colors/nord.vim b/colors/nord.vim index 67f0a3f7..4497a387 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -170,6 +170,23 @@ hi! link PreCondit PreProc "+-----------+ "+ Languages + "+-----------+ +call s:hi("awkCharClass", s:nord7_gui, "", s:nord7_term, "", "", "") +call s:hi("awkPatterns", s:nord9_gui, "", s:nord9_term, "", "bold", "") +hi! link awkArrayElement Identifier +hi! link awkBoolLogic Keyword +hi! link awkBrktRegExp SpecialChar +hi! link awkComma Delimiter +hi! link awkExpression Keyword +hi! link awkFieldVars Identifier +hi! link awkLineSkip Keyword +hi! link awkOperator Operator +hi! link awkRegExp SpecialChar +hi! link awkSearch Keyword +hi! link awkSemicolon Delimiter +hi! link awkSpecialCharacter SpecialChar +hi! link awkSpecialPrintf SpecialChar +hi! link awkVariables Identifier + call s:hi("cIncluded", s:nord7_gui, "", s:nord7_term, "", "", "") hi! link cOperator Operator hi! link cPreCondit PreCondit From 101964eb9e74943b223d496643a6cccee3f2aa24 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sun, 29 Jan 2017 17:35:31 +0100 Subject: [PATCH 06/14] GHI-#18 Implement language groups for Lisp --- colors/nord.vim | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/colors/nord.vim b/colors/nord.vim index 4497a387..4a59e34e 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -255,6 +255,12 @@ hi! link lessCssAttribute Delimiter hi! link lessFunction Function hi! link cssSelectorOp Keyword +hi! link lispAtomBarSymbol SpecialChar +hi! link lispAtomList SpecialChar +hi! link lispAtomMark Keyword +hi! link lispBarSymbol SpecialChar +hi! link lispFunc Function + hi! link luaFunc Function call s:hi("markdownBlockquote", s:nord7_gui, "", s:nord7_term, "", "", "") From 033f3d8bf53277d872848b5beb2f87d93c4f29b0 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sun, 29 Jan 2017 17:35:51 +0100 Subject: [PATCH 07/14] GHI-#19 Implement language groups for (DOS) INI --- colors/nord.vim | 3 +++ 1 file changed, 3 insertions(+) diff --git a/colors/nord.vim b/colors/nord.vim index 4a59e34e..56a26c77 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -208,6 +208,9 @@ hi! link cssPseudoClass cssDefinition hi! link cssPseudoClassId cssPseudoClass hi! link cssVendor Keyword +call s:hi("dosiniHeader", s:nord8_gui, "", s:nord8_term, "", "", "") +hi! link dosiniLabel Type + call s:hi("dtBooleanKey", s:nord7_gui, "", s:nord7_term, "", "", "") call s:hi("dtExecKey", s:nord7_gui, "", s:nord7_term, "", "", "") call s:hi("dtLocaleKey", s:nord7_gui, "", s:nord7_term, "", "", "") From dbc5c4d555ad154438d94f750384c1ce3a2a7da8 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sun, 29 Jan 2017 17:55:56 +0100 Subject: [PATCH 08/14] GHI-#20 Fix Markdown header color to use "nord8" --- colors/nord.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colors/nord.vim b/colors/nord.vim index 56a26c77..276bc91f 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -272,7 +272,7 @@ call s:hi("markdownCodeDelimiter", s:nord7_gui, "", s:nord7_term, "", "", "") call s:hi("markdownFootnote", s:nord7_gui, "", s:nord7_term, "", "", "") call s:hi("markdownId", s:nord7_gui, "", s:nord7_term, "", "", "") call s:hi("markdownIdDeclaration", s:nord7_gui, "", s:nord7_term, "", "", "") -call s:hi("markdownH1", s:nord7_gui, "", s:nord7_term, "", "", "") +call s:hi("markdownH1", s:nord8_gui, "", s:nord8_term, "", "", "") call s:hi("markdownLinkText", s:nord7_gui, "", s:nord7_term, "", "", "") call s:hi("markdownUrl", s:nord4_gui, "", "NONE", "", "NONE", "") hi! link markdownFootnoteDefinition markdownFootnote From a5c3459af0910757ab7fc5162e5bd5a9775eb224 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sat, 4 Feb 2017 12:07:09 +0100 Subject: [PATCH 09/14] GHI-#14 Implement support for the "jedi-vim" plugin This actually includes two groups which had to be adjusted. Both are used for a parameter popup in functions. The background color and the color of the current parameter at the cursor are now colored explicitly instead of the default syntax link to the "TabLine" and "CursorLine" groups. --- colors/nord.vim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/colors/nord.vim b/colors/nord.vim index d4611944..31b85435 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -373,6 +373,10 @@ call s:hi("GitGutterChange", s:nord13_gui, "", s:nord13_term, "", "", "") call s:hi("GitGutterChangeDelete", s:nord11_gui, "", s:nord11_term, "", "", "") call s:hi("GitGutterDelete", s:nord11_gui, "", s:nord11_term, "", "", "") +" davidhalter/jedi-vim +call s:hi("jediFunction", s:nord4_gui, s:nord3_gui, "", s:nord3_term, "", "") +call s:hi("jediFat", s:nord8_gui, s:nord3_gui, s:nord8_term, s:nord3_term, "bold,underline", "") + " NERDTree " > scrooloose/nerdtree call s:hi("NERDTreeExecFile", s:nord7_gui, "", s:nord7_term, "", "", "") From dcfb441e0f4dc7345a8799065218b9f7c17fb8ec Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sat, 4 Feb 2017 12:25:04 +0100 Subject: [PATCH 10/14] GHI-#23 Optimize style for the SQL group "sqlSpecial" --- colors/nord.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/colors/nord.vim b/colors/nord.vim index 31b85435..9626d0db 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -339,6 +339,7 @@ hi! link shDerefSimple Identifier hi! link shDerefVar Identifier hi! link sqlKeyword Keyword +hi! link sqlSpecial Keyword call s:hi("vimAugroup", s:nord7_gui, "", s:nord7_term, "", "", "") call s:hi("vimMapRhs", s:nord7_gui, "", s:nord7_term, "", "", "") From 360a76eab27bb5de0662cc072e233621678b2986 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sat, 4 Feb 2017 12:52:47 +0100 Subject: [PATCH 11/14] GHI-#22 Add support for "pythonEscape" group --- colors/nord.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/colors/nord.vim b/colors/nord.vim index 9626d0db..9b8216d8 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -309,6 +309,7 @@ call s:hi("podVerbatimLine", s:nord4_gui, "", "NONE", "", "", "") hi! link podFormat Keyword hi! link pythonBuiltin Type +hi! link pythonEscape SpecialChar call s:hi("rubyConstant", s:nord7_gui, "", s:nord7_term, "", "", "") hi! link rubyAttribute Identifier From cda5c0140526fb3709bebed109b3a7381bcf28f9 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Mon, 20 Feb 2017 06:14:02 +0100 Subject: [PATCH 12/14] Add terminal emulator port project "Nord Hyper" --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4be608c8..b5c4521a 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,7 @@ Make sure to install one of the currently supported terminal themes listed below [![Nord GNOME Terminal](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-gnome-terminal-banner.svg)](https://github.com/arcticicestudio/nord-gnome-terminal) [![Nord Guake](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-guake-banner.svg)](https://github.com/arcticicestudio/nord-guake) +[![Nord Hyper](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-hyper-banner.svg)](https://github.com/arcticicestudio/nord-hyper) [![Nord iTerm2](https://cdn.rawgit.com/arcticicestudio/nord/0971858f496823fd916f3368961f16ef2c7aad1e/src/assets/nord-iterm2-banner.svg)](https://github.com/arcticicestudio/nord-iterm2) [![Nord Konsole](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-konsole-banner.svg)](https://github.com/arcticicestudio/nord-konsole) [![Nord Mintty](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-mintty-banner.svg)](https://github.com/arcticicestudio/nord-mintty) From 23a242532bb3e6998e41e1dac59da2cdd867a8db Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Thu, 23 Feb 2017 17:31:23 +0100 Subject: [PATCH 13/14] Update copyright year --- README.md | 2 +- autoload/airline/themes/nord.vim | 2 +- autoload/lightline/colorscheme/nord.vim | 2 +- colors/nord.vim | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b5c4521a..53c5ad4f 100644 --- a/README.md +++ b/README.md @@ -155,7 +155,7 @@ Please report issues/bugs, feature requests and suggestions for improvements to

-

Copyright © 2016 Arctic Ice Studio

+

Copyright © 2017 Arctic Ice Studio

diff --git a/autoload/airline/themes/nord.vim b/autoload/airline/themes/nord.vim index d8493bf7..704a2b40 100755 --- a/autoload/airline/themes/nord.vim +++ b/autoload/airline/themes/nord.vim @@ -4,7 +4,7 @@ " repository https://github.com/arcticicestudio/nord-vim + " author Arctic Ice Studio + " email development@arcticicestudio.com + -" copyright Copyright (C) 2016 + +" copyright Copyright (C) 2017 + " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ let s:nord_vim_version="0.3.0" let g:airline#themes#nord#palette = {} diff --git a/autoload/lightline/colorscheme/nord.vim b/autoload/lightline/colorscheme/nord.vim index b08a1e6a..fd2066f6 100755 --- a/autoload/lightline/colorscheme/nord.vim +++ b/autoload/lightline/colorscheme/nord.vim @@ -4,7 +4,7 @@ " repository https://github.com/arcticicestudio/nord-vim + " author Arctic Ice Studio + " email development@arcticicestudio.com + -" copyright Copyright (C) 2016 + +" copyright Copyright (C) 2017 + " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ let s:nord_vim_version="0.3.0" let s:p = {'normal': {}, 'inactive': {}, 'insert': {}, 'replace': {}, 'visual': {}, 'tabline': {}} diff --git a/colors/nord.vim b/colors/nord.vim index 9b8216d8..7bb1e291 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -4,7 +4,7 @@ " repository https://github.com/arcticicestudio/nord-vim + " author Arctic Ice Studio + " email development@arcticicestudio.com + -" copyright Copyright (C) 2016 + +" copyright Copyright (C) 2017 + " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ if version > 580 hi clear From 6c3e6f07a94c644a76c624d820ef5733814ed2c8 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Thu, 23 Feb 2017 19:42:01 +0100 Subject: [PATCH 14/14] Prepare stable development release version 0.4.0 --- CHANGELOG.md | 28 +++++++++++++++++++++++++ README.md | 10 ++++----- autoload/airline/themes/nord.vim | 2 +- autoload/lightline/colorscheme/nord.vim | 2 +- colors/nord.vim | 2 +- 5 files changed, 36 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3eccccb8..d9fac032 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,33 @@ --- +# 0.4.0 +*2017-02-23* +## Features +### [Configurations][readme-configuration] +❯ Added a configuration to enable [italic comments](https://github.com/arcticicestudio/nord-vim#italic-comments). +To adhere to the Nord style guide this option is disabled by default. It can be enabled by setting the `g:nord_italic_comments` variable to `1`. +```vim +let g:nord_italic_comments = 1 +``` +(@kepbod, #13 (PR #16), dc6149f4) + +## Improvements +### Plugin Support +❯ The method/function signature live preview of the [`jedi-vim`](https://github.com/davidhalter/jedi-vim) plugin is now colorized correctly. (@mkalinski, #14, a5c3459a) + +

Before

After

+ +### Language Support +❯ Implemented optimized styles for the Python syntax group `pythonEscape`. (@mkalinski, #22, 360a76ea) +![ghi-22-scrot-pythonescape](https://cloud.githubusercontent.com/assets/7836623/22618370/ad74e7fc-eada-11e6-89f2-23b351e8aa2b.png) + +❯ Implemented optimized styles for the SQL syntax groups `sqlSpecial` which is now linked to the `sqlKeyword` group to colorize constants like `true`/`false` and `null` as keywords. (@mkalinski, #23, dcfb441e) + +### Documentation +❯ Added the new terminal emulator port project [Nord Hyper](https://github.com/arcticicestudio/nord-hyper) +[![Nord Hyper](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-hyper-banner.svg)](https://github.com/arcticicestudio/nord-hyper) + # 0.3.0 *2017-01-24* ## Improvements @@ -67,3 +94,4 @@ Detailed information about features, supported plugins/languages and install ins **Project Initialization** [nord-lightline]: https://github.com/arcticicestudio/nord-vim/blob/develop/autoload/lightline/colorscheme/nord.vim +[readme-configuration]: https://github.com/arcticicestudio/nord-vim#configuration diff --git a/README.md b/README.md index 53c5ad4f..3e9d5f58 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ Plug 'arcticicestudio/nord-vim', { 'branch': 'develop' } A specific version can be installed via git tags. ```vim -Plug 'arcticicestudio/nord-vim', { 'tag': 'v0.3.0' } +Plug 'arcticicestudio/nord-vim', { 'tag': 'v0.4.0' } ``` Of course it can be installed with any of your favorite tools: @@ -100,10 +100,10 @@ or on specific events. Plug 'arcticicestudio/nord-vim', { 'on': 'NERDTreeToggle' } ``` -### Configuration +## Configuration All options should be set **before** the [activation](#activation) command! -#### Italic comments +### Italic comments **This option should only be enabled if your terminal emulator supports italics!** Enable to use italic font for all comments. @@ -148,7 +148,7 @@ Detailed descriptions for supported languages can be found in the [project wiki] ![][scrot-lang-ruby] ## Development -[![](https://img.shields.io/badge/Changelog-0.3.0-blue.svg)](https://github.com/arcticicestudio/nord-vim/blob/v0.3.0/CHANGELOG.md) [![](https://img.shields.io/badge/Workflow-gitflow--branching--model-blue.svg)](http://nvie.com/posts/a-successful-git-branching-model) [![](https://img.shields.io/badge/Versioning-ArcVer_0.8.0-blue.svg)](https://github.com/arcticicestudio/arcver) +[![](https://img.shields.io/badge/Changelog-0.4.0-81A1C1.svg)](https://github.com/arcticicestudio/nord-vim/blob/v0.4.0/CHANGELOG.md) [![](https://img.shields.io/badge/Workflow-gitflow--branching--model-81A1C1.svg)](http://nvie.com/posts/a-successful-git-branching-model) [![](https://img.shields.io/badge/Versioning-ArcVer_0.8.0-81A1C1.svg)](https://github.com/arcticicestudio/arcver) ### Contribution Please report issues/bugs, feature requests and suggestions for improvements to the [issue tracker](https://github.com/arcticicestudio/nord-vim/issues). @@ -157,7 +157,7 @@ Please report issues/bugs, feature requests and suggestions for improvements to

Copyright © 2017 Arctic Ice Studio

-

+

[scrot-readme-default-profile]: https://raw.githubusercontent.com/arcticicestudio/nord-vim/develop/src/assets/scrot-readme-default-profile.png [scrot-readme-lazy-profile-change]: https://raw.githubusercontent.com/arcticicestudio/nord-vim/develop/src/assets/scrot-readme-lazy-profile-change.png diff --git a/autoload/airline/themes/nord.vim b/autoload/airline/themes/nord.vim index 704a2b40..e3d6d927 100755 --- a/autoload/airline/themes/nord.vim +++ b/autoload/airline/themes/nord.vim @@ -6,7 +6,7 @@ " email development@arcticicestudio.com + " copyright Copyright (C) 2017 + " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -let s:nord_vim_version="0.3.0" +let s:nord_vim_version="0.4.0" let g:airline#themes#nord#palette = {} let s:nord0_gui = "#2E3440" diff --git a/autoload/lightline/colorscheme/nord.vim b/autoload/lightline/colorscheme/nord.vim index fd2066f6..cf4dd755 100755 --- a/autoload/lightline/colorscheme/nord.vim +++ b/autoload/lightline/colorscheme/nord.vim @@ -6,7 +6,7 @@ " email development@arcticicestudio.com + " copyright Copyright (C) 2017 + " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -let s:nord_vim_version="0.3.0" +let s:nord_vim_version="0.4.0" let s:p = {'normal': {}, 'inactive': {}, 'insert': {}, 'replace': {}, 'visual': {}, 'tabline': {}} let s:nord0 = ["#2E3440", "NONE"] diff --git a/colors/nord.vim b/colors/nord.vim index 7bb1e291..6d2e8771 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -14,7 +14,7 @@ if version > 580 endif let g:colors_name = "nord" -let s:nord_vim_version="0.3.0" +let s:nord_vim_version="0.4.0" set background=dark let s:nord0_gui = "#2E3440"