Skip to content

Commit

Permalink
Merge branch 'release/0.14.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
arcticicestudio committed May 25, 2019
2 parents 5a101ca + 54a2cb5 commit d2fb5c3
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 5 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@

<!-- lint disable no-duplicate-headings -->

# 0.14.0

![Release Date: 2019-05-25](https://img.shields.io/badge/Release_Date-2019--05--25-88c0d0.svg?style=flat-square&colorA=4c566a) [![Project Board](https://img.shields.io/badge/Project_Board-0.14.0-88c0d0.svg?style=flat-square&colorA=4c566a&logo=github&logoColor=eceff4)](https://github.com/arcticicestudio/nord-docs/projects/16) [![Milestone](https://img.shields.io/badge/Milestone-0.14.0-88c0d0.svg?style=flat-square&colorA=4c566a&logo=github&logoColor=eceff4)](https://github.com/arcticicestudio/nord-docs/milestone/14)

# Features

**Nord Vim „bold font rendering“ configuration**#147#148 (⊶ ef0cb597)
↠ Added [documentations for Nord Vim's new `nord_bold` configuration][home-docs-ports-vim-config-font-bold] implemented in [arcticicestudio/nord-vim#161][].

# 0.13.0

![Release Date: 2019-05-21](https://img.shields.io/badge/Release_Date-2019--05--21-88c0d0.svg?style=flat-square&colorA=4c566a) [![Project Board](https://img.shields.io/badge/Project_Board-0.13.0-88c0d0.svg?style=flat-square&colorA=4c566a&logo=github&logoColor=eceff4)](https://github.com/arcticicestudio/nord-docs/projects/15) [![Milestone](https://img.shields.io/badge/Milestone-0.13.0-88c0d0.svg?style=flat-square&colorA=4c566a&logo=github&logoColor=eceff4)](https://github.com/arcticicestudio/nord-docs/milestone/13)
Expand Down Expand Up @@ -1462,6 +1471,8 @@ Note that packages marked with an double exclamation mark `‼` have been affect
[gpg]: https://www.gnupg.org
[home-blog]: https://www.nordtheme.com/blog
[home-comm]: https://www.nordtheme.com/community
[home-docs-ports-vim-config-font-bold]: https://www.nordtheme.com/docs/ports/vim/configuration#bold-styles
[home-docs-ports-vim-config]: https://www.nordtheme.com/docs/ports/vim/configuration
[home-ports]: https://www.nordtheme.com/ports
[home]: https://www.nordtheme.com
[inter-ui]: https://rsms.me/inter
Expand Down Expand Up @@ -1658,10 +1669,13 @@ Note that packages marked with an double exclamation mark `‼` have been affect

[gh-137]: https://github.com/arcticicestudio/nord-docs/issues/140
[gh-143]: https://github.com/arcticicestudio/nord-docs/issues/140
[home-docs-ports-vim-config]: https://www.nordtheme.com/docs/ports/vim/configuration
[home-docs-ports-vim-custom]: https://www.nordtheme.com/docs/ports/vim/customization
[home-docs-ports-vim-install]: https://www.nordtheme.com/docs/ports/vim/installation
[home-docs-ports-vim]: https://www.nordtheme.com/docs/ports/vim
[home-ports-vim]: https://www.nordtheme.com/ports/vim
[mdx-blog-v1-depr]: https://mdxjs.com/blog/v1/#deprecations
[mdx-blog-v1]: https://mdxjs.com/blog/v1/

<!-- v0.14.0 -->

[arcticicestudio/nord-vim#161][]https://github.com/arcticicestudio/nord-vim/pull/161
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 37 additions & 1 deletion content/docs/ports/vim/configuration/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,42 @@ let g:nord_uniform_diff_background = 1

</Banner>

### Bold Style

Next to color highlighting Nord Vim makes use of <strong>bold</strong> font styles for various syntax elements to make them stand out more as well as better representing their syntactic meaning.

<Banner
title={
<>
<strong>Bold</strong> font styles are enabled (<Code>g:nord_bold = 1</Code>) by default in both GUI and terminal
mode.
</>
}
>
Almost every common and still actively used terminal supports <strong>bold</strong> font styles while in GUI mode
Vim's runtime ensures the rendering compatibility for special font styles without the risk to break the overall
appearance.
</Banner>

The theme includes **bold** font styles for specific syntax elements. To **disable bold font styles**, set the `nord_bold` theme configuration variable:

```viml
let g:nord_bold = 0
```

<Image
dropShadow
fluid={props.images["font-rendering-bold.png"]}
rounded
alt="Screenshot showing the Markdown code syntax with bold font style rendering"
>
<span>
Markdown code syntax with <strong>bold</strong> font style rendering.
</span>
</Image>

If you encounter font rendering problems with **bold** styles, please ensure the used terminal is capable of rendering such special font styles or disable Nord Vim's **bold** font rendering like described above.

### Italic Style

In terminal mode Nord Vim doesn't make use of <em>italic</em> font styles in order to prevent unexpected styles and color highlighting. This design decision is based on the known problems of most terminals related to special font styles like <em>italic</em>.
Expand All @@ -187,7 +223,7 @@ In terminal mode Nord Vim doesn't make use of <em>italic</em> font styles in ord
</>
}
>
Since Vim's runtime shoukd ensure the rendering compatibility for special font styles Nord Vim can make use of{" "}
Since Vim's runtime should ensure the rendering compatibility for special font styles Nord Vim can make use of{" "}
<em>italics</em> without the risk to break the overall appearance.
</Banner>

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nord-docs",
"title": "Nord Docs",
"version": "0.13.0",
"version": "0.14.0",
"description": "The official Nord website and documentation",
"author": {
"name": "Arctic Ice Studio",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import {
*
* @author Arctic Ice Studio <development@arcticicestudio.com>
* @author Sven Greb <development@svengreb.de>
* @version 0.13.0
* @version 0.14.0
* @since 0.1.0
*/
const Landing = ({ location: { pathname } }) => (
Expand Down

0 comments on commit d2fb5c3

Please sign in to comment.