mirror of
https://github.com/nordtheme/vim.git
synced 2026-09-10 07:36:23 -04:00
Prepare stable development release version 0.4.0
This commit is contained in:
parent
23a242532b
commit
6c3e6f07a9
28
CHANGELOG.md
28
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)
|
||||
|
||||
<p align="center"><strong>Before</strong><br><img src="https://cloud.githubusercontent.com/assets/7836623/22618347/4857d88e-eada-11e6-9696-83a8886f5771.png"/><br><strong>After</strong><br><img src="https://cloud.githubusercontent.com/assets/7836623/22618354/63ddffde-eada-11e6-8a60-52a39642728e.png"/></p>
|
||||
|
||||
### 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
|
||||
|
|
|
|||
10
README.md
10
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
|
|||
|
||||
<p align="center"> <img src="http://arcticicestudio.com/favicon.ico" width=16 height=16/> Copyright © 2017 Arctic Ice Studio</p>
|
||||
|
||||
<p align="center"><a href="http://www.apache.org/licenses/LICENSE-2.0"><img src="https://img.shields.io/badge/License-Apache_2.0-blue.svg"/></a> <a href="https://creativecommons.org/licenses/by-sa/4.0"><img src="https://img.shields.io/badge/License-CC_BY--SA_4.0-blue.svg"/></a></p>
|
||||
<p align="center"><a href="http://www.apache.org/licenses/LICENSE-2.0"><img src="https://img.shields.io/badge/License-Apache_2.0-5E81AC.svg"/></a> <a href="https://creativecommons.org/licenses/by-sa/4.0"><img src="https://img.shields.io/badge/License-CC_BY--SA_4.0-5E81AC.svg"/></a></p>
|
||||
|
||||
[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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"]
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue