From 5d63820776ec9b5fd75199d049e40ea439acbff7 Mon Sep 17 00:00:00 2001
From: Arctic Ice Studio
Date: Sun, 29 Jan 2017 09:37:40 +0100
Subject: 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 67f0a3f..0bebfb1 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, "", "", "")
--
cgit v1.2.3-70-g09d2
From 8164a2854d83d07aaddd7b3f5bf948a95777d1d7 Mon Sep 17 00:00:00 2001
From: Arctic Ice Studio
Date: Sun, 29 Jan 2017 10:24:09 +0100
Subject: 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 8e60263..4470316 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.
--
cgit v1.2.3-70-g09d2
From 5b058cbf8760131a344c98e85964433133eb2633 Mon Sep 17 00:00:00 2001
From: Arctic Ice Studio
Date: Sun, 29 Jan 2017 10:26:08 +0100
Subject: Add a README table on content
---
README.md | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/README.md b/README.md
index 8e60263..5312690 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!
--
cgit v1.2.3-70-g09d2
From 96fd18a326b1dd3d0094f3ffe13c65c31a83bbb4 Mon Sep 17 00:00:00 2001
From: Arctic Ice Studio
Date: Sun, 29 Jan 2017 10:27:33 +0100
Subject: 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 5312690..872a5a3 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' }
```
--
cgit v1.2.3-70-g09d2
From 66d057442b325a902a93f50657358241a6ef9ebb Mon Sep 17 00:00:00 2001
From: Arctic Ice Studio
Date: Sun, 29 Jan 2017 17:34:36 +0100
Subject: 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 67f0a3f..4497a38 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
--
cgit v1.2.3-70-g09d2
From 101964eb9e74943b223d496643a6cccee3f2aa24 Mon Sep 17 00:00:00 2001
From: Arctic Ice Studio
Date: Sun, 29 Jan 2017 17:35:31 +0100
Subject: 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 4497a38..4a59e34 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, "", "", "")
--
cgit v1.2.3-70-g09d2
From 033f3d8bf53277d872848b5beb2f87d93c4f29b0 Mon Sep 17 00:00:00 2001
From: Arctic Ice Studio
Date: Sun, 29 Jan 2017 17:35:51 +0100
Subject: 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 4a59e34..56a26c7 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, "", "", "")
--
cgit v1.2.3-70-g09d2
From dbc5c4d555ad154438d94f750384c1ce3a2a7da8 Mon Sep 17 00:00:00 2001
From: Arctic Ice Studio
Date: Sun, 29 Jan 2017 17:55:56 +0100
Subject: 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 56a26c7..276bc91 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
--
cgit v1.2.3-70-g09d2
From a5c3459af0910757ab7fc5162e5bd5a9775eb224 Mon Sep 17 00:00:00 2001
From: Arctic Ice Studio
Date: Sat, 4 Feb 2017 12:07:09 +0100
Subject: 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 d461194..31b8543 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, "", "", "")
--
cgit v1.2.3-70-g09d2
From dcfb441e0f4dc7345a8799065218b9f7c17fb8ec Mon Sep 17 00:00:00 2001
From: Arctic Ice Studio
Date: Sat, 4 Feb 2017 12:25:04 +0100
Subject: 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 31b8543..9626d0d 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, "", "", "")
--
cgit v1.2.3-70-g09d2
From 360a76eab27bb5de0662cc072e233621678b2986 Mon Sep 17 00:00:00 2001
From: Arctic Ice Studio
Date: Sat, 4 Feb 2017 12:52:47 +0100
Subject: 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 9626d0d..9b8216d 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
--
cgit v1.2.3-70-g09d2
From cda5c0140526fb3709bebed109b3a7381bcf28f9 Mon Sep 17 00:00:00 2001
From: Arctic Ice Studio
Date: Mon, 20 Feb 2017 06:14:02 +0100
Subject: Add terminal emulator port project "Nord Hyper"
---
README.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/README.md b/README.md
index 4be608c..b5c4521 100644
--- a/README.md
+++ b/README.md
@@ -35,6 +35,7 @@ Make sure to install one of the currently supported terminal themes listed below
[](https://github.com/arcticicestudio/nord-gnome-terminal)
[](https://github.com/arcticicestudio/nord-guake)
+[](https://github.com/arcticicestudio/nord-hyper)
[](https://github.com/arcticicestudio/nord-iterm2)
[](https://github.com/arcticicestudio/nord-konsole)
[](https://github.com/arcticicestudio/nord-mintty)
--
cgit v1.2.3-70-g09d2
From 23a242532bb3e6998e41e1dac59da2cdd867a8db Mon Sep 17 00:00:00 2001
From: Arctic Ice Studio
Date: Thu, 23 Feb 2017 17:31:23 +0100
Subject: 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 b5c4521..53c5ad4 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 d8493bf..704a2b4 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 b08a1e6..fd2066f 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 9b8216d..7bb1e29 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
--
cgit v1.2.3-70-g09d2
From 6c3e6f07a94c644a76c624d820ef5733814ed2c8 Mon Sep 17 00:00:00 2001
From: Arctic Ice Studio
Date: Thu, 23 Feb 2017 19:42:01 +0100
Subject: 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 3eccccb..d9fac03 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)
+
+
+❯ 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)
+[](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 53c5ad4..3e9d5f5 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://github.com/arcticicestudio/nord-vim/blob/v0.3.0/CHANGELOG.md) [](http://nvie.com/posts/a-successful-git-branching-model) [](https://github.com/arcticicestudio/arcver)
+[](https://github.com/arcticicestudio/nord-vim/blob/v0.4.0/CHANGELOG.md) [](http://nvie.com/posts/a-successful-git-branching-model) [](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 704a2b4..e3d6d92 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 fd2066f..cf4dd75 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 7bb1e29..6d2e877 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"
--
cgit v1.2.3-70-g09d2