diff --git a/CHANGELOG.md b/CHANGELOG.md index a4c466c6..17835ac3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,122 @@ --- +# 0.11.0 + +![Release Date: 2019-04-18](https://img.shields.io/badge/Release_Date-2019--04--18-88C0D0.svg?style=flat-square) [![Project Board](https://img.shields.io/badge/Project_Board-0.11.0-88C0D0.svg?style=flat-square)](https://github.com/arcticicestudio/nord-vim/projects/16) [![Milestone](https://img.shields.io/badge/Milestone-0.11.0-88C0D0.svg?style=flat-square)](https://github.com/arcticicestudio/nord-vim/milestone/13) + +## Features + +### Syntax + +**Basic support for Asciidoc syntax highlighting** — #131 ⇄ #152 (⊶ 6e6025b9) by [@tidux][gh-user-tidux] +↠ Added basic syntax highlighting support for [Asciidoc][] that comes bundled with Vim 8. + +

+ +**Basic syntax highlighting support for Rust** — #138 ⇄ #154 (⊶ b0ffc6b5) by [@TerminalWitchcraft][gh-user-terminalwitchcraft] +↠ Added basic syntax highlighting support for [Rust][]. + +[Traits][rustdoc-traits] and [enums][rustdoc-enums] are colorized with `nord7` and with bold font to make them visually stand out more. +Also [attributes][rustdoc-attributes] and [derives][rustdoc-derives] are colored with `nord10`. + +

Before

+ +

After

+ +[Macros][rustdoc-macros] are colorized with `nord8` and bold font to make them visually different from "normal" functions. + +

Before

+ +

After

+ +[Escape][rustdoc-escapes] sequences are colored with `nord13`. + +

Before

+ +

After

+ +Import statements and paths are correctly colored with keyword and type colors. + +

Before

+ +

After

+ +#### Plugin Support + +**Haskell Syntax Plugin Support** — #104 ⇄ #150 (⊶ b0ffc6b5) by [@vabatta][gh-user-vabatta] +↠ Added support for Haskell syntax through the [neovimhaskell/haskell-vim][] plugin. +This includes better coloring for types/classes using `nord7` instead of highlighting them like keywords (`nord9`) and pre-processor and pragma elements are now colorized correctly with `nord10`. + +#### Pragma + +

Before

+ +

After

+ +#### Pre-Processor + +

Before

+ +

After

+ +#### Types/Classes + +

Before

+ +

After

+ +### UI + +**Theme config for bolder vertical split line** — #132 ⇄ #153 (⊶ 9059d7d8) by [@huyvohcmc][gh-user-huyvohcmc] +↠ Previously the [`VertSplit`][vdoc-vsplit] (`:help VertSplit`) key used `nord1` as background color by default making the line appear to be very lumpy. This has now been changed to use `nord0` as background instead to visually merge with the background so only the separator characters are a visual indicator for the split line which makes it look more lightweight and declutters the overall appearance. + +

With base editor background (default)

+ +

With enabled bold nord1 background

+ +To allow user who liked the previous implementation to keep the style a new `nord_bold_vertical_split_line` theme config was also added that can be assigned to `1` to achieve the legacy design. + +```viml +let g:nord_bold_vertical_split_line = 1 +``` + +The README includes information and hints how to change the separator character by customizing Vim's [`fillchars`][vdoc-fchar] (`:help fillchars`) variable. + +#### Plugin Support + +**`:terminal` status line in airline** — #134 (⊶ be815f09) by [@meck][gh-user-meck] +↠ Added support for Vim's new `:terminal` mode in [airline][gh-src-airline]. + +

Before: No :terminal support (before)

+ +

After: Support for airline's new _term theme keys

+ +## Improvements + +### Syntax + +**Better generator expressions in CMake** — #137 ⇄ #151 (⊶ d2774cbb) by [@markand][gh-user-markand] +↠ [CMake generator expressions][cmake-doc-genexpr] are now highlighted using `nord10` as foreground instead of `nord13` as background and `nord0` as foreground. + +

Before

+ +

After

+ +### UI + +#### Plugin Support + +**airline warnings and errors** — #130 (⊶ e85dbe75) by [@axelitus][gh-user-axelitus] +↠ Added support for error and warning elements of [airline][gh-src-airline]. + +

Before

+ +

After

+ +**ALE error and warning support** — #135 (⊶ 9d82b7a1) by [@meck][gh-user-meck] +↠ Added support highlighting and underlines for [ALE][plugin-ale] errors and warnings to also align the style with gutter signs. + # 0.10.0 ![Release Date: 2019-03-21](https://img.shields.io/badge/Release_Date-2019--03--21-88C0D0.svg?style=flat-square) [![Project Board](https://img.shields.io/badge/Project_Board-0.10.0-88C0D0.svg?style=flat-square)](https://github.com/arcticicestudio/nord-vim/projects/15) [![Milestone](https://img.shields.io/badge/Milestone-0.10.0-88C0D0.svg?style=flat-square)](https://github.com/arcticicestudio/nord-vim/milestone/12) @@ -483,6 +599,21 @@ Detailed information about features, supported plugins/languages and install ins ![Release Date: 2016-12-25](https://img.shields.io/badge/Release_Date-2016--12--25-88C0D0.svg?style=flat-square) + + + + + + +[asciidoc]: https://asciidoctor.org [gh-11]: https://github.com/arcticicestudio/nord-vim/issues/11 [gh-55-arcticicestudio/nord]: https://github.com/arcticicestudio/nord/issues/55 [gh-lightline.vim]: https://github.com/itchyny/lightline.vim @@ -491,11 +622,11 @@ Detailed information about features, supported plugins/languages and install ins [gh-tmuxline.vim]: https://github.com/edkolev/tmuxline.vim [gh-user-cg433n]: https://github.com/cg433n [gist-colors-in-terminals]: https://gist.github.com/XVilka/8346728 -[itchyny/lightline.vim-gh-257]: https://github.com/itchyny/lightline.vim/pull/257 [itchyny/lightline-adv-config]: https://github.com/itchyny/lightline.vim#advanced-configuration +[itchyny/lightline.vim-gh-257]: https://github.com/itchyny/lightline.vim/pull/257 [lesscss-doc-fn-lighten]: http://lesscss.org/functions/#color-operations-lighten -[nord-gh]: https://github.com/arcticicestudio/nord [nord-atom-syntax-pr-47]: https://github.com/arcticicestudio/nord-atom-syntax/pull/47 +[nord-gh]: https://github.com/arcticicestudio/nord [nord-lightline]: https://github.com/arcticicestudio/nord-vim/blob/develop/autoload/lightline/colorscheme/nord.vim [plugin-ale]: https://github.com/w0rp/ale [plugin-ctrlp]: https://github.com/ctrlpvim/ctrlp.vim @@ -506,12 +637,33 @@ Detailed information about features, supported plugins/languages and install ins [plugin-stephpy/vim-yaml]: https://github.com/stephpy/vim-yaml [plugin-tpope/vim-fugitive]: https://github.com/tpope/vim-fugitive [plugin-vimwiki/vimwiki]: https://github.com/vimwiki/vimwiki -[readme-config]: https://github.com/arcticicestudio/nord-vim#configuration [readme-config-comment-brightness]: https://github.com/arcticicestudio/nord-vim#comment-contrast [readme-config-italic]: https://github.com/arcticicestudio/nord-vim#italic-support [readme-config-line-number-background]: https://github.com/arcticicestudio/nord-vim#line-number-background [readme-config-underline-support]: https://github.com/arcticicestudio/nord-vim#underline-support [readme-config-uniform-diff-background]: https://github.com/arcticicestudio/nord-vim#uniform-diff-background [readme-config-uniform-statusline-background]: https://github.com/arcticicestudio/nord-vim#uniform-status-lines -[vim-doc-diffAdd]: http://vimdoc.sourceforge.net/htmldoc/syntax.html#hl-DiffAdd +[readme-config]: https://github.com/arcticicestudio/nord-vim#configuration +[rust]: https://www.rust-lang.org +[vdoc-fchar]: http://vimdoc.sourceforge.net/htmldoc/options.html#'fillchars' +[vdoc-vsplit]: http://vimdoc.sourceforge.net/htmldoc/syntax.html#hl-VertSplit +[vim-doc-diffadd]: http://vimdoc.sourceforge.net/htmldoc/syntax.html#hl-DiffAdd [yaml]: http://yaml.org + + + +[cmake-doc-genexpr]: https://cmake.org/cmake/help/latest/manual/cmake-generator-expressions.7.html +[gh-user-axelitus]: https://github.com/axelitus +[gh-user-huyvohcmc]: https://github.com/huyvohcmc +[gh-user-markand]: https://github.com/markand +[gh-user-meck]: https://github.com/meck +[gh-user-terminalwitchcraft]: https://github.com/terminalwitchcraft +[gh-user-tidux]: https://github.com/tidux +[gh-user-vabatta]: https://github.com/vabatta +[neovimhaskell/haskell-vim]: https://github.com/neovimhaskell/haskell-vim +[rustdoc-attributes]: https://doc.rust-lang.org/reference/attributes.html +[rustdoc-derives]: https://doc.rust-lang.org/edition-guide/rust-2018/macros/custom-derive.html +[rustdoc-enums]: https://doc.rust-lang.org/1.1.0/book/enums.html +[rustdoc-escapes]: https://doc.rust-lang.org/reference/tokens.html#ascii-escapes +[rustdoc-macros]: https://doc.rust-lang.org/1.8.0/book/macros.html +[rustdoc-traits]: https://doc.rust-lang.org/book/ch10-02-traits.html diff --git a/README.md b/README.md index 9989e558..92ccf7c7 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ Plug 'arcticicestudio/nord-vim', { 'branch': 'develop' } A explicit version can be installed via Git tags: ```vim -Plug 'arcticicestudio/nord-vim', { 'tag': 'v0.10.0' } +Plug 'arcticicestudio/nord-vim', { 'tag': 'v0.11.0' } ``` #### Manual @@ -316,7 +316,7 @@ Detailed descriptions for supported languages can be found in the [project wiki] ## Development -[![](https://img.shields.io/badge/Changelog-0.10.0-81A1C1.svg?style=flat-square)](https://github.com/arcticicestudio/nord-vim/blob/v0.10.0/CHANGELOG.md#0100) [![](https://img.shields.io/badge/Workflow-gitflow--branching--model-81A1C1.svg?style=flat-square)](http://nvie.com/posts/a-successful-git-branching-model) [![](https://img.shields.io/badge/Versioning-ArcVer_0.8.0-81A1C1.svg?style=flat-square)](https://github.com/arcticicestudio/arcver) +[![](https://img.shields.io/badge/Changelog-0.11.0-81A1C1.svg?style=flat-square)](https://github.com/arcticicestudio/nord-vim/blob/v0.11.0/CHANGELOG.md#0110) [![](https://img.shields.io/badge/Workflow-gitflow--branching--model-81A1C1.svg?style=flat-square)](http://nvie.com/posts/a-successful-git-branching-model) [![](https://img.shields.io/badge/Versioning-ArcVer_0.8.0-81A1C1.svg?style=flat-square)](https://github.com/arcticicestudio/arcver) ### Contribution diff --git a/autoload/airline/themes/nord.vim b/autoload/airline/themes/nord.vim index 7840cce0..358b3900 100755 --- a/autoload/airline/themes/nord.vim +++ b/autoload/airline/themes/nord.vim @@ -5,7 +5,7 @@ " Repository: https://github.com/arcticicestudio/nord-vim " License: MIT -let s:nord_vim_version="0.10.0" +let s:nord_vim_version="0.11.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 76e7ab2e..11813014 100755 --- a/autoload/lightline/colorscheme/nord.vim +++ b/autoload/lightline/colorscheme/nord.vim @@ -5,7 +5,7 @@ " Repository: https://github.com/arcticicestudio/nord-vim " License: MIT -let s:nord_vim_version="0.10.0" +let s:nord_vim_version="0.11.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 fbd3deb3..2e633c62 100755 --- a/colors/nord.vim +++ b/colors/nord.vim @@ -13,7 +13,7 @@ if version > 580 endif let g:colors_name = "nord" -let s:nord_vim_version="0.10.0" +let s:nord_vim_version="0.11.0" set background=dark let s:nord0_gui = "#2E3440"