Skip to content

Commit d2fb5c3

Browse files
Merge branch 'release/0.14.0'
2 parents 5a101ca + 54a2cb5 commit d2fb5c3

File tree

6 files changed

+55
-5
lines changed

6 files changed

+55
-5
lines changed

Diff for: CHANGELOG.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,15 @@
88

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

11+
# 0.14.0
12+
13+
![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)
14+
15+
# Features
16+
17+
**Nord Vim „bold font rendering“ configuration**#147#148 (⊶ ef0cb597)
18+
↠ Added [documentations for Nord Vim's new `nord_bold` configuration][home-docs-ports-vim-config-font-bold] implemented in [arcticicestudio/nord-vim#161][].
19+
1120
# 0.13.0
1221

1322
![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)
@@ -1462,6 +1471,8 @@ Note that packages marked with an double exclamation mark `‼` have been affect
14621471
[gpg]: https://www.gnupg.org
14631472
[home-blog]: https://www.nordtheme.com/blog
14641473
[home-comm]: https://www.nordtheme.com/community
1474+
[home-docs-ports-vim-config-font-bold]: https://www.nordtheme.com/docs/ports/vim/configuration#bold-styles
1475+
[home-docs-ports-vim-config]: https://www.nordtheme.com/docs/ports/vim/configuration
14651476
[home-ports]: https://www.nordtheme.com/ports
14661477
[home]: https://www.nordtheme.com
14671478
[inter-ui]: https://rsms.me/inter
@@ -1658,10 +1669,13 @@ Note that packages marked with an double exclamation mark `‼` have been affect
16581669

16591670
[gh-137]: https://github.com/arcticicestudio/nord-docs/issues/140
16601671
[gh-143]: https://github.com/arcticicestudio/nord-docs/issues/140
1661-
[home-docs-ports-vim-config]: https://www.nordtheme.com/docs/ports/vim/configuration
16621672
[home-docs-ports-vim-custom]: https://www.nordtheme.com/docs/ports/vim/customization
16631673
[home-docs-ports-vim-install]: https://www.nordtheme.com/docs/ports/vim/installation
16641674
[home-docs-ports-vim]: https://www.nordtheme.com/docs/ports/vim
16651675
[home-ports-vim]: https://www.nordtheme.com/ports/vim
16661676
[mdx-blog-v1-depr]: https://mdxjs.com/blog/v1/#deprecations
16671677
[mdx-blog-v1]: https://mdxjs.com/blog/v1/
1678+
1679+
<!-- v0.14.0 -->
1680+
1681+
[arcticicestudio/nord-vim#161][]https://github.com/arcticicestudio/nord-vim/pull/161
89.7 KB
Loading

Diff for: content/docs/ports/vim/configuration/index.mdx

+37-1
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,42 @@ let g:nord_uniform_diff_background = 1
176176

177177
</Banner>
178178

179+
### Bold Style
180+
181+
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.
182+
183+
<Banner
184+
title={
185+
<>
186+
<strong>Bold</strong> font styles are enabled (<Code>g:nord_bold = 1</Code>) by default in both GUI and terminal
187+
mode.
188+
</>
189+
}
190+
>
191+
Almost every common and still actively used terminal supports <strong>bold</strong> font styles while in GUI mode
192+
Vim's runtime ensures the rendering compatibility for special font styles without the risk to break the overall
193+
appearance.
194+
</Banner>
195+
196+
The theme includes **bold** font styles for specific syntax elements. To **disable bold font styles**, set the `nord_bold` theme configuration variable:
197+
198+
```viml
199+
let g:nord_bold = 0
200+
```
201+
202+
<Image
203+
dropShadow
204+
fluid={props.images["font-rendering-bold.png"]}
205+
rounded
206+
alt="Screenshot showing the Markdown code syntax with bold font style rendering"
207+
>
208+
<span>
209+
Markdown code syntax with <strong>bold</strong> font style rendering.
210+
</span>
211+
</Image>
212+
213+
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.
214+
179215
### Italic Style
180216

181217
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>.
@@ -187,7 +223,7 @@ In terminal mode Nord Vim doesn't make use of <em>italic</em> font styles in ord
187223
</>
188224
}
189225
>
190-
Since Vim's runtime shoukd ensure the rendering compatibility for special font styles Nord Vim can make use of{" "}
226+
Since Vim's runtime should ensure the rendering compatibility for special font styles Nord Vim can make use of{" "}
191227
<em>italics</em> without the risk to break the overall appearance.
192228
</Banner>
193229

Diff for: package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "nord-docs",
33
"title": "Nord Docs",
4-
"version": "0.13.0",
4+
"version": "0.14.0",
55
"description": "The official Nord website and documentation",
66
"author": {
77
"name": "Arctic Ice Studio",

Diff for: src/pages/index.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import {
2626
*
2727
* @author Arctic Ice Studio <[email protected]>
2828
* @author Sven Greb <[email protected]>
29-
* @version 0.13.0
29+
* @version 0.14.0
3030
* @since 0.1.0
3131
*/
3232
const Landing = ({ location: { pathname } }) => (

0 commit comments

Comments
 (0)