From 4666c595e26f5e53ee2198c01dc3b4b71021e7b5 Mon Sep 17 00:00:00 2001
From: Arctic Ice Studio
Date: Tue, 27 Dec 2016 08:57:34 +0100
Subject: Move README description above top screenshot
---
README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
(limited to 'README.md')
diff --git a/README.md b/README.md
index 91ae945..2747841 100644
--- a/README.md
+++ b/README.md
@@ -9,9 +9,9 @@ Based on the Nord color pa
---
-
Font: Source Code Pro 20px
+Nord Vim is a 16 colorspace theme build to run in GUI- and terminal mode with support for many third-party plugins and styles for [lightline.vim](https://github.com/itchyny/lightline.vim) and [vim-airline](https://github.com/vim-airline/vim-airline).
-Nord Vim is a 16 colorspace theme build to run in GUI- and terminal mode with support for many third-party plugins and styles for [`lightline.vim`](https://github.com/itchyny/lightline.vim) and [`vim-airline`](https://github.com/vim-airline/vim-airline).
+
Font: Source Code Pro 20px
## Getting started
### Installation
--
cgit v1.3.1
From 499bf8be4a7989b0321ba11558db6271170aaf9a Mon Sep 17 00:00:00 2001
From: Arctic Ice Studio
Date: Sun, 1 Jan 2017 10:25:33 +0100
Subject: Prepare stable development release version 0.1.2
---
CHANGELOG.md | 5 +++++
README.md | 4 ++--
autoload/airline/themes/nord.vim | 2 +-
autoload/lightline/colorscheme/nord.vim | 2 +-
colors/nord.vim | 2 +-
5 files changed, 10 insertions(+), 5 deletions(-)
(limited to 'README.md')
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4a7e619..c3a42aa 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,11 @@
---
+# 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
+order. (@shuei72, #5, f8ffce24)
+
# 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)
diff --git a/README.md b/README.md
index 2747841..c8153af 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.1' }
+Plug 'arcticicestudio/nord-vim', { 'tag': 'v0.1.2' }
```
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://github.com/arcticicestudio/nord-vim/blob/v0.1.1/CHANGELOG.md) [](http://nvie.com/posts/a-successful-git-branching-model) [](https://github.com/arcticicestudio/arcver)
+[](https://github.com/arcticicestudio/nord-vim/blob/v0.1.2/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).
diff --git a/autoload/airline/themes/nord.vim b/autoload/airline/themes/nord.vim
index c028abc..b579101 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.1"
+let s:nord_vim_version="0.1.2"
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 9d62541..df35ca4 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.1"
+let s:nord_vim_version="0.1.2"
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 e408bad..2e53fa8 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.1"
+let s:nord_vim_version="0.1.2"
set background=dark
let s:nord0_gui = "#2E3440"
--
cgit v1.3.1