mirror of
https://github.com/nordtheme/vim.git
synced 2026-09-10 07:36:23 -04:00
Prepare stable development release version 0.2.0
This commit is contained in:
parent
30e1f7e335
commit
691a1b24b6
40
CHANGELOG.md
40
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)
|
||||
|
||||
<p align="center"><strong>Before</strong><br><img src="https://cloud.githubusercontent.com/assets/7836623/21586772/f08a56d2-d0d4-11e6-84e0-37e3021317ad.png"/><br><strong>After</strong><br><img src="https://cloud.githubusercontent.com/assets/7836623/21586785/23ef246c-d0d5-11e6-8573-2e0d8391186c.gif"/></p>
|
||||
|
||||
❯ 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)
|
||||
|
||||
<p align="center"><strong>Before</strong><br><img src="https://cloud.githubusercontent.com/assets/7836623/21588201/c8aa75ba-d0e4-11e6-9426-96bfab1c545f.gif"/><br><strong>After</strong><br><img src="https://cloud.githubusercontent.com/assets/7836623/21588207/d67f29b0-d0e4-11e6-8eba-117f38a9c073.gif"/></p>
|
||||
|
||||
# 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)
|
||||
## 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)
|
||||
# 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)
|
||||
|
||||
# 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)
|
||||
|
||||
<p align="center"><img src="https://raw.githubusercontent.com/arcticicestudio/nord-vim/develop/assets/scrot-lang-javascript.png"/></p>
|
||||
|
||||
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)
|
||||
|
||||
<p align="center"><img src="https://raw.githubusercontent.com/arcticicestudio/nord-vim/develop/assets/scrot-plugin-support-ui-lightline.png"/></p>
|
||||
|
||||
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)
|
||||
|
||||
<p align="center"><img src="https://raw.githubusercontent.com/arcticicestudio/nord-vim/develop/assets/scrot-plugin-support-ui-airline.png"/></p>
|
||||
|
||||
# 0.0.0 (2016-12-25)
|
||||
# 0.0.0
|
||||
*2016-12-25*
|
||||
|
||||
**Project Initialization**
|
||||
|
|
|
|||
|
|
@ -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://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)
|
||||
[](https://github.com/arcticicestudio/nord-vim/blob/v0.2.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).
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"]
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue