Skip to content

Releases: nordtheme/vim

0.9.0

24 Jun 07:07
v0.9.0
Compare
Choose a tag to compare


Release Date: 2018-06-24 Project Board Milestone

Features

Syntax

Plugin Support

❯ Added support for the YAML plugin stephpy/vim-yaml which improves the highlighting for keys to match the JSON syntax style. (PR #120, @mdzhang, b1478b0)

Before

After

❯ Added basic syntax highlighting support for vimwiki. (PR #98 in PR #114, @smesko85, 9e7addb)

UI

❯ Added a new configuration to allow users to enable background for the line number of the current line. It can be enabled by setting the g:nord_cursor_line_number_background variable to 1. (PR #100, @andrepolischuk, 035e36d)

let g:nord_cursor_line_number_background = 1

No background (default)

Enabled background

❯ Added a new configuration to allow users to globally toggle underlines for cases where the terminal emulator might not be capable to handle underlines in terminal mode. It can be enabled by setting the g:nord_underline variable to 1. (#106 in PR #127 (supersedes #109), @dylnmc @markand , 01cfd1b)

Underlined Text

❯ Added support for the status line of the :terminal window mode for Vim or Neovim. (PR #108 (supersedes #103), @dylnmc, 922504f)

Before

After

Plugin Support

❯ Added highlighting support for the navigation marks in the sign column of the kshenoy/vim-signature plugin. (PR #122, @kooparse, 1df3945)

Improvements

Syntax

❯ Added highlighting for the JavaScript keyword this. (PR #119, @kristijanhusak, 4fe2d43)

Before

After

UI

❯ The cursor is now correctly shown and visible when leaving a terminal window from within Vim or Neovim by adding the TermCursorNC group. (PR #101, @meck, 2fac9fa)

❯ The „inline marker“ in unified diffs is now colorized differently than the background of the changed line to make the changes better and faster recognizable. This applies for both the uniform diff background mode and normal diff mode. (PR #121, @ironhouzi, 65c559e)

Before/After comparison of default diff mode


Before/After comparison of uniform diff mode


Bug Fixes

UI

❯ The current line number's color is now highlighted correctly in terminal mode. Previously it was only highlighted when running in GUI mode or when termguicolors has been set. (#116 in 50ec737 (PR #100), @huyvohcmc @dylnmc)

Before

After


The full changelog is available here

0.8.0

05 Jan 19:18
v0.8.0
Compare
Choose a tag to compare


Release Date: 2018-01-05 Project Board Milestone

Features

Plugin Support

UI

❯ Added support for vim-signify. (PR #81, @dabio, edcdd0e)

Improvements

UI

❯ The color of links in :help was the same as normal text making it impossible to to distinguish between both. This has been improved by using nord8 including the help bars when enabled with :set conceallevel=2. (#85 in PR #93, @delphinus, e9974fe)

Before

After

Documentation

❯ The lightline screenshots in the documentation have been made using the lightline's advanced configurations. This confused users when the lighline does not equal the one seen on the screenshot due to the default lightline configuration. This has now been clarified including a additional screenshot showing the appearance of the lightline when using the default configuration. (#74 in PR #94, @lokesh-krishna, 3c14c96)

Bug Fixes

❯ The background color for matching parens is now assigned to the right color nord3 instead of nord0 in GUI mode. (#95 in PR #96, @dylnmc, 8bc1be0)

Before

After


The full changelog is available here

0.7.0

30 Dec 17:33
v0.7.0
Compare
Choose a tag to compare


Release Date: 2017-12-30 Project Board Milestone

Features

❯ Added a new [configuration to allow users to increase the comment brightness][readme-config-comment-brightness] by 1 - 20 percent. It can be enabled by setting the g:nord_comment_brightness variable to a number between 1 and 20. (#48 in PR #56, @drzel, e18ab4e)

This option should only be enabled if the terminal supports 24bit true color (16 million colors) and requires the termguicolors option to be set is in ~/.vimrc or via :set termguicolors!

Default and 15% increased

Default and 12% increased

To adhere to the Nord design guidelines this option uses nord3 by default.

This is a reference table if users like to use the same increased contrast values as provided by the [Nord Atom Syntax accessibility custom comment contrast theme setting][nord-atom-syntax-pr-47] which are calculated using the LESSCSS [lighten][lesscss-doc-fn-lighten] function.

Increased by Calculated value
1% #4e586d
2% #505b70
3% #525d73
4% #556076
5% #576279
6% #59647c
7% #5b677f
8% #5d6982
9% #5f6c85
10% #616e88
11% #63718b
12% #66738e
13% #687591
14% #6a7894
15% #6d7a96
16% #6f7d98
17% #72809a
18% #75829c
19% #78859e
20% #7b88a1

More information about true color and the support in various terminals can be found in [this gist][gist-colors-in-terminals].

❯ Added a new [configuration for a uniform diff background color][readme-config-uniform-diff-background]. (#60 in PR #61 #62 #65, @dylnmc @aidanharris @berkin, 958322d)

Setting g:nord_uniform_diff_background to 1 enables the uniform diff background using nord1:

❯ Added a new [configuration to use uniform activate- and inactive status line backgrounds][readme-config-uniform-statusline-background]. (#37 in PR #58, @dylnmc @DenniJensen, 9305680)

Default status lines

Uniform status lines

❯ Added a new [configuration to explicitly enable italic text formatting][readme-config-italic]. (#88 in PR #89, @lokesh-krishna @dylnmc, dbfc55f)

Please note that this option should only be enabled if the used terminal supports italics!

With enabled option for italic comments

Markdown syntax styling

❯ Added support for NeoVim UI terminal colors. (#63, @meck, af01167)

Plugin Support

Syntax

❯ Added support for the [plasticboy/vim-markdown][plugin-plasticboy/vim-markdown] syntax plugin to match the style of the built-in markdown syntax styles. (#45 in PR #57, @VVVFO, 0992126)

UI

❯ Added support for the PlugClean command of the [junegunn/vim-plug][plugin-junegunn/vim-plug] plugin which used the Ignore group by default for deleted directory listings resulting in unreadable text when cursorline has been set. (#43 in PR #59, @dylnmc, e532b5d)

Before

After

❯ Added basic support for [tpope/vim-fugitive][plugin-tpope/vim-fugitive]. (#76 in PR #77, @anhari, fa09c3b)

Filenames are now highlighted when using the :Gstatus command.

Improvements

Syntax

❯ Added highlight support for legacy diff groups diffAdded and diffRemoved of the git.vim and diff.vim syntx definitions. (#66 in PR #67, @brandoniffert, 99e59e6)

These groups are not in the [official vim documentation][vim-doc-diffAdd] but are still used by the syntax for example when run with git commit --verbose.

Before

After

❯ Added highlighting support for Markdown italic and bold delimiter. (#90 in PR #92, 97c8aa2)

Before

After

❯ Added missing Markdown italic and bold groups. (#84 in PR #91, @lokesh-krishna @dylnmc, 63b4612)

❯ Improved the highlighting for matching parens. (#75 and #71 in PR #78, @vincentzhezhang @cryptomaniac512 @dylnmc, 8eb7b2a)

The background color intensity under the cursor was too bright and the cursor no more visible causing the user to be distracted to focus on the matching bracket instead of the bracket at the cursor position.

To optimally improve the highlighting nord3 will now be used as background color for the matching element which doesn't conflict with the cursorline color and also stands out in order to see the matching element.

Before

After with cursorline option

After without cursorline option

Bug Fixes

TODO keywords are now highlighted correctly for Neovim and gVim (#52 in PR #53, @dylnmc, 063620f)

Before

After

❯ Fixed invisible inactive lightline bars (PR #73, @dylnmc, 788876b)

Before

After

❯ Fixed the WildMenu background color for current selection (tab completion) not being visible. (#64 in PR #80, @markand, 53fce0d)

Before

After

Tasks

❯ Added the inc...

Read more

0.6.0

03 Aug 07:28
v0.6.0
Compare
Choose a tag to compare


0.6.0

Version Details

Release Date: *2017-08-03* Milestone Project Board

Features

Plugin Support

UI

❯ Added basic support for CtrlP. (PR #33, @syedelec)

  • Matched characters are using the keyword color instead of the normal text color to make matched characters visible
  • Already opened buffers now take the normal text color instead of the comment color

❯ Added basic support ALE. (PR #44, @meck)

  • Warning signs are colorized using a nord13 foreground
  • Error signs are colorized using a nord11 foreground instead of a red background with a white foreground

Improvements

UI

❯ The fold marker foreground has been adjusted to match the comment color instead of nord1 which has been too dark causing them to be unreadable in bright environments. The background color has also been changed to nord1 to differ from normal comments and the font style is now bold for better legibility. (#38 in PR #40, @dylnmc)

❯ The highlight text of a active substitute search result is now underlined in order to make it more recognizable. (#35 in PR #41, @KevinSjoberg)

Neovim

❯ Addded support for the Neovim specific :CheckHealth status highlight groups. (#31 in PR #42, @syedelec, Thanks to @dylnmc)

Before
After

Bug Fixes

UI

❯ Fixed unreadable text color on pending search result highlights. (#32 in PR #39, @syedelec)

Before

After


The full changelog is available here

0.5.0

17 Apr 08:15
v0.5.0
Compare
Choose a tag to compare


2017-04-17

Improvements

Language Support

❯ Implemented optimized styles for Ruby (@hahuang65, #29, 085c133)

  • Symbols (rubySymbol) now have a bold font style
  • Block parameter list symbols (rubyBlockParameterList) are now colorized as keywords
  • Local (variable) methods (rubyLocalVariableOrMethod) are now colorized as methods

Bug Fixes

Documentation

❯ Fixed a typo in the project description. (@arcticicestudio, #28, b213402)


The full changelog is available here

0.4.0

23 Feb 18:44
v0.4.0
Compare
Choose a tag to compare


2017-02-23

Features

Configurations

❯ Added a configuration to enable 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.

let g:nord_italic_comments = 1

(@kepbod, #13 (PR #16), dc6149f)

Improvements

Plugin Support

❯ The method/function signature live preview of the jedi-vim plugin is now colorized correctly. (@mkalinski, #14, a5c3459)

Before

After

Language Support

❯ Implemented optimized styles for the Python syntax group pythonEscape. (@mkalinski, #22, 360a76e)
ghi-22-scrot-pythonescape

❯ 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, dcfb441)

Documentation

❯ Added the new terminal emulator port project Nord Hyper
Nord Hyper


The full changelog is available here

0.3.0

24 Jan 22:01
v0.3.0
Compare
Choose a tag to compare


2017-01-24

Improvements

Plugin Support

❯ The Nord lightline.vim UI plugin theme now includes better support for the tmuxline.vim plugin. Before this implementation text shown in the main segment of the tmuxline, generated via the :Tmuxline lightline command, has been colorized using nord0 which resulted in unreadable text due to a nord3 background.
This has been fixed by using nord5 as foreground color. (@scottwillmoore, #11, 4ea37f7)

Before

After

With unicode separators

Without specified configurations (tmuxline.vim autodetect)

Bug Fixes

Documentation

❯ Fixed a typo in the README installation guide for Vundle. (@kepbod, #10, 29145bb)

❯ Fixed the banner of the Nord iTerm2 port project showing the Nord GNOME Terminal banner instead. (@shvetsovdm, #8 / nord/#9, 7a447b4)


The full changelog is available here

0.2.0

02 Jan 14:10
v0.2.0
Compare
Choose a tag to compare


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, 30e1f7e)

Before

After

❯ 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, bdb209f)

Before

After


The full changelog is available here

0.1.2

01 Jan 09:28
v0.1.2
Compare
Choose a tag to compare


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, f8ffce2)


The full changelog is available here

0.1.1

26 Dec 16:43
v0.1.1
Compare
Choose a tag to compare


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, 4d642b9)


The full changelog is available here