From d3bb24a8991c142d5b5beeabe0140494bd21c1ed Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Mon, 2 Jan 2017 11:39:59 +0100 Subject: [PATCH 1/3] GHI-#9 Use "nord0" foreground color to fix unreadable block cursor text --- colors/nord.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/colors/nord.vim b/colors/nord.vim index 2e53fa8b..d2a94431 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -79,9 +79,9 @@ call s:hi("Underline", "", "", "", "", "underline", "") "+--- Editor ---+ call s:hi("ColorColumn", "", s:nord1_gui, "NONE", s:nord1_term, "", "") -call s:hi("Cursor", "", s:nord4_gui, "", "NONE", "", "") +call s:hi("Cursor", s:nord0_gui, s:nord4_gui, "", "NONE", "", "") call s:hi("CursorLine", "", s:nord1_gui, "NONE", s:nord1_term, "NONE", "") -call s:hi("iCursor", "", s:nord4_gui, "", "NONE", "", "") +call s:hi("iCursor", s:nord0_gui, s:nord4_gui, "", "NONE", "", "") call s:hi("LineNr", s:nord3_gui, s:nord0_gui, s:nord3_term, "NONE", "", "") call s:hi("MatchParen", s:nord0_gui, s:nord8_gui, s:nord1_term, s:nord8_term, "", "") call s:hi("NonText", s:nord2_gui, "", s:nord3_term, "", "", "") From 9a5c4b6200c1626861e2c58a619fb0923bc47383 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Mon, 2 Jan 2017 11:57:28 +0100 Subject: [PATCH 2/3] GHI-#7 Use nord1 instead of nord3 as visual selection color Fixes unreadable (visual) selected comments. --- colors/nord.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/colors/nord.vim b/colors/nord.vim index 2e53fa8b..e1b5d1f5 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -95,8 +95,8 @@ call s:hi("SpellBad", "", s:nord0_gui, "", "NONE", "undercurl", s:nord11_gui) call s:hi("SpellCap", "", s:nord0_gui, "", "NONE", "undercurl", s:nord13_gui) call s:hi("SpellLocal", "", s:nord0_gui, "", "NONE", "undercurl", s:nord5_gui) call s:hi("SpellRare", "", s:nord0_gui, "", "NONE", "undercurl", s:nord6_gui) -call s:hi("Visual", "", s:nord2_gui, "", s:nord3_term, "", "") -call s:hi("VisualNOS", "", s:nord2_gui, "", s:nord3_term, "", "") +call s:hi("Visual", "", s:nord2_gui, "", s:nord1_term, "", "") +call s:hi("VisualNOS", "", s:nord2_gui, "", s:nord1_term, "", "") "+--- Gutter ---+ call s:hi("CursorColumn", "", s:nord1_gui, "NONE", s:nord1_term, "", "") From 691a1b24b67485ac7fd070e0a89626a8965457ad Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Mon, 2 Jan 2017 15:07:31 +0100 Subject: [PATCH 3/3] Prepare stable development release version 0.2.0 --- CHANGELOG.md | 38 +++++++++++++++++++------ README.md | 4 +-- autoload/airline/themes/nord.vim | 2 +- autoload/lightline/colorscheme/nord.vim | 2 +- colors/nord.vim | 2 +- 5 files changed, 34 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3a42aa0..a2737410 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,30 +4,50 @@ --- -# 0.1.2 (2017-01-01) +# 0.2.0 +*2017-01-02* + +## Improvements +❯ Characters under block cursors are now colored darker (`nord0`) while the block cursor is visible to achieve a optimal contrast and to avoid unreadability due to the same cursor- and foreground color (`nord4`). (@arcticicestudio / @scottwillmoore, #9, 30e1f7e3) + +

Before

After

+ +❯ The background color of visual mode selections is now colored in `nord1` instead of `nord3` to avoid a color collision with comments which has led to unreadable text.(@scottwillmoore, #7, bdb209f5) + +

Before

After

+ +# 0.1.2 +*2017-01-01* + ## Bug Fixes -Fixed a bug where the `g:colors_name` variable has been unset caused by the `syntax reset` call due to the execution +❯ Fixed a bug where the `g:colors_name` variable has been unset caused by the `syntax reset` call due to the execution order. (@shuei72, #5, f8ffce24) -# 0.1.1 (2016-12-26) +# 0.1.1 +*2016-12-26* + ## Bug Fixes -Fixed wrong color variables (`*_term` to `*_gui`) for the `guisp` attribute of all `Spell*` highlighting groups which caused error logs while loading `vim`/`gvim`/MacVim. (@kamwitsta, #4, 4d642b9b) +❯ Fixed wrong color variables (`*_term` to `*_gui`) for the `guisp` attribute of all `Spell*` highlighting groups which caused error logs while loading `vim`/`gvim`/MacVim. (@kamwitsta, #4, 4d642b9b) + +# 0.1.0 +*2016-12-25* -# 0.1.0 (2016-12-25) ## Features Detailed information about features, supported plugins/languages and install instructions can be found in the [README](https://github.com/arcticicestudio/nord-vim/blob/develop/README.md#installation) and in the [project wiki](https://github.com/arcticicestudio/nord-vim/wiki). -Implemented the main color theme file [`nord.vim`](https://github.com/arcticicestudio/nord-vim/blob/develop/colors/nord.vim). (@arcticicestudio, #1, e2832b9) +❯ Implemented the main color theme file [`nord.vim`](https://github.com/arcticicestudio/nord-vim/blob/develop/colors/nord.vim). (@arcticicestudio, #1, e2832b9)

-Implemented the [lightline](https://github.com/itchyny/lightline.vim) color scheme file [`nord.vim`](https://github.com/arcticicestudio/nord-vim/blob/develop/autoload/lightline/colorscheme/nord.vim). (@arcticicestudio, #2, f9891ffe) +❯ Implemented the [lightline](https://github.com/itchyny/lightline.vim) color scheme file [`nord.vim`](https://github.com/arcticicestudio/nord-vim/blob/develop/autoload/lightline/colorscheme/nord.vim). (@arcticicestudio, #2, f9891ffe)

-Implemented the [airline](https://github.com/vim-airline/vim-airline) color theme file [`nord.vim`](https://github.com/arcticicestudio/nord-vim/blob/develop/autoload/airline/themes/nord.vim). (@arcticicestudio, #3, e54464a7) +❯ Implemented the [airline](https://github.com/vim-airline/vim-airline) color theme file [`nord.vim`](https://github.com/arcticicestudio/nord-vim/blob/develop/autoload/airline/themes/nord.vim). (@arcticicestudio, #3, e54464a7)

-# 0.0.0 (2016-12-25) +# 0.0.0 +*2016-12-25* + **Project Initialization** diff --git a/README.md b/README.md index c8153afc..9ffbd327 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Plug 'arcticicestudio/nord-vim', { 'branch': 'develop' } A specific version can be installed via git tags. ```sh -Plug 'arcticicestudio/nord-vim', { 'tag': 'v0.1.2' } +Plug 'arcticicestudio/nord-vim', { 'tag': 'v0.2.0' } ``` Of course it can be installed with any of your favorite tools: @@ -118,7 +118,7 @@ Detailed descriptions for supported languages can be found in the [project wiki] ![][scrot-lang-ruby] ## Development -[![](https://img.shields.io/badge/Changelog-0.1.2-blue.svg)](https://github.com/arcticicestudio/nord-vim/blob/v0.1.2/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.2.0-blue.svg)](https://github.com/arcticicestudio/nord-vim/blob/v0.2.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) ### Contribution Please report issues/bugs, feature requests and suggestions for improvements to the [issue tracker](https://github.com/arcticicestudio/nord-vim/issues). diff --git a/autoload/airline/themes/nord.vim b/autoload/airline/themes/nord.vim index b5791016..10b6bffa 100755 --- a/autoload/airline/themes/nord.vim +++ b/autoload/airline/themes/nord.vim @@ -6,7 +6,7 @@ " email development@arcticicestudio.com + " copyright Copyright (C) 2016 + " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -let s:nord_vim_version="0.1.2" +let s:nord_vim_version="0.2.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 df35ca41..66768e79 100755 --- a/autoload/lightline/colorscheme/nord.vim +++ b/autoload/lightline/colorscheme/nord.vim @@ -6,7 +6,7 @@ " email development@arcticicestudio.com + " copyright Copyright (C) 2016 + " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -let s:nord_vim_version="0.1.2" +let s:nord_vim_version="0.2.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 9540dab5..a307baf3 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.1.2" +let s:nord_vim_version="0.2.0" set background=dark let s:nord0_gui = "#2E3440"