diff --git a/CHANGELOG.md b/CHANGELOG.md index d9fac032..31c9a409 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,21 @@ --- +# 0.5.0 +*2017-04-17* +## Improvements +### Language Support +❯ Implemented optimized styles for Ruby (@hahuang65, #29, 085c1337) + - 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, b2134029) + # 0.4.0 *2017-02-23* ## Features diff --git a/README.md b/README.md index 3e9d5f58..ec0800a2 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@

-

A arctic, north-bluish clean and elegant Vim color theme.

+

An arctic, north-bluish clean and elegant Vim color theme.

Designed for a fluent and clear workflow.
Based on the Nord color palette.

@@ -18,8 +18,8 @@ Nord Vim is a 16 colorspace theme build to run in GUI- and terminal mode with su - [Via plugin/runtimepath manager](#via-pluginruntimepath-manager) - [Manual](#manual) - [Activation](#activation) - - [Configuration](#configuration) - - [Italic comments](#italic-comments) + - [Configuration](#configuration) + - [Italic comments](#italic-comments) - [Plugin Support](#plugin-support) - [UI Plugins](#ui-plugins) - [Language Plugins](#language-plugins) @@ -42,7 +42,7 @@ Make sure to install one of the currently supported terminal themes listed below [![Nord PuTTY](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-putty-banner.svg)](https://github.com/arcticicestudio/nord-putty) [![Nord Terminal.app](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-terminal-app-banner.svg)](https://github.com/arcticicestudio/nord-terminal-app) [![Nord Terminator](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-terminator-banner.svg)](https://github.com/arcticicestudio/nord-terminator) -[![Nord Terminix](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-terminix-banner.svg)](https://github.com/arcticicestudio/nord-terminix) +[![Nord Tilix](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-tilix-banner.svg)](https://github.com/arcticicestudio/nord-tilix) [![Nord Termite](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-termite-banner.svg)](https://github.com/arcticicestudio/nord-termite) [![Nord XFCE Terminal](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-xfce-terminal-banner.svg)](https://github.com/arcticicestudio/nord-xfce-terminal) [![Nord Xresources](https://cdn.rawgit.com/arcticicestudio/nord/develop/src/assets/nord-xresources-banner.svg)](https://github.com/arcticicestudio/nord-xresources) @@ -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.4.0' } +Plug 'arcticicestudio/nord-vim', { 'tag': 'v0.5.0' } ``` Of course it can be installed with any of your favorite tools: @@ -148,7 +148,7 @@ Detailed descriptions for supported languages can be found in the [project wiki] ![][scrot-lang-ruby] ## Development -[![](https://img.shields.io/badge/Changelog-0.4.0-81A1C1.svg)](https://github.com/arcticicestudio/nord-vim/blob/v0.4.0/CHANGELOG.md) [![](https://img.shields.io/badge/Workflow-gitflow--branching--model-81A1C1.svg)](http://nvie.com/posts/a-successful-git-branching-model) [![](https://img.shields.io/badge/Versioning-ArcVer_0.8.0-81A1C1.svg)](https://github.com/arcticicestudio/arcver) +[![](https://img.shields.io/badge/Changelog-0.5.0-81A1C1.svg)](https://github.com/arcticicestudio/nord-vim/blob/v0.5.0/CHANGELOG.md) [![](https://img.shields.io/badge/Workflow-gitflow--branching--model-81A1C1.svg)](http://nvie.com/posts/a-successful-git-branching-model) [![](https://img.shields.io/badge/Versioning-ArcVer_0.8.0-81A1C1.svg)](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 e3d6d927..e1a73c24 100755 --- a/autoload/airline/themes/nord.vim +++ b/autoload/airline/themes/nord.vim @@ -6,7 +6,7 @@ " email development@arcticicestudio.com + " copyright Copyright (C) 2017 + " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -let s:nord_vim_version="0.4.0" +let s:nord_vim_version="0.5.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 cf4dd755..100deff6 100755 --- a/autoload/lightline/colorscheme/nord.vim +++ b/autoload/lightline/colorscheme/nord.vim @@ -6,7 +6,7 @@ " email development@arcticicestudio.com + " copyright Copyright (C) 2017 + " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -let s:nord_vim_version="0.4.0" +let s:nord_vim_version="0.5.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 6d2e8771..375d0691 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.4.0" +let s:nord_vim_version="0.5.0" set background=dark let s:nord0_gui = "#2E3440" @@ -312,11 +312,14 @@ hi! link pythonBuiltin Type hi! link pythonEscape SpecialChar call s:hi("rubyConstant", s:nord7_gui, "", s:nord7_term, "", "", "") +call s:hi("rubySymbol", s:nord6_gui, "", s:nord6_term, "", "bold", "") hi! link rubyAttribute Identifier +hi! link rubyBlockParameterList Operator hi! link rubyInterpolationDelimiter Keyword hi! link rubyKeywordAsMethod Function +hi! link rubyLocalVariableOrMethod Function +hi! link rubyPseudoVariable Keyword hi! link rubyRegexp SpecialChar -hi! link rubySymbol Identifier call s:hi("sassClass", s:nord7_gui, "", s:nord7_term, "", "", "") call s:hi("sassId", s:nord7_gui, "", s:nord7_term, "", "underline", "")