Age | Commit message (Collapse) | Author |
|
|
|
|
|
arcticicestudio/feature/gh-138-basic-rust-syntax-highlighting-support
Basic syntax highlighting support for Rust
|
|
Add support for airline warning and error colors
|
|
As suggested in the comments of pull request #130
|
|
|
|
Add more ALE Highlights
|
|
Fix for terminal statusline in airline
|
|
Basic support for Asciidoc syntax highlighting
|
|
arcticicestudio/feature/gh-104-haskell-syntax-support
Haskell Syntax Plugin Support
|
|
arcticicestudio/feature/gh-132-bold-vertical-split-line-config
Theme config for bolder vertical split line
|
|
This commit adds basic syntax highlighting support for Rust (1):
Traits (2) and enums (3) are colorized with `nord7` and with bold font
to make them visually stand out more.
Also attributes (4) and derives (5) are colored with `nord10`.
Macros (6) are colorized with `nord8` and bold font to make them
visually different from "normal" functions.
Escape (7) sequences are colored with `nord13`.
Import statements and paths are correctly colored with keyword and type colors.
References:
(1) https://www.rust-lang.org
(2) https://doc.rust-lang.org/book/ch10-02-traits.html
(3) https://doc.rust-lang.org/1.1.0/book/enums.html
(4) https://doc.rust-lang.org/reference/attributes.html
(5) https://doc.rust-lang.org/edition-guide/rust-2018/macros/custom-derive.html
(6) https://doc.rust-lang.org/1.8.0/book/macros.html
(7) https://doc.rust-lang.org/reference/tokens.html#ascii-escapes
GH-138
|
|
Previously the `VertSplit` (1) (`:help VertSplit`) key used `nord1` as
background color by default making the line appear to be very lumpy.
This commit changes this style to use `nord0` as bavkground instead to
visually merge with the background so only the separator charaters are
a visual indiciator for the split line whih makes it look more
lightweight and unclutters the overall appeareance.
To allow user who liked the previous implementation to keep the style
this commit also adds a new `nord_bold_vertical_split_line` theme config
that can be assigned to `1` to achieve the legacy design.
The README also include information and hints how to change the
separator character by customizing Vim's `fillchars` (2)
(`:help fillchars`) variable.
References:
(1) http://vimdoc.sourceforge.net/htmldoc/syntax.html#hl-VertSplit
(2) http://vimdoc.sourceforge.net/htmldoc/options.html#'fillchars'
GH-132
|
|
arcticicestudio/improvement/gh-137-cmake-generator-expressions
Improve CMake generator expression highlighting
|
|
This commit adds basic syntax highlighting support for Asciidoc (1) that
comes bundled with Vim 8.
References:
(1) https://asciidoctor.org
GH-131
|
|
CMake generator expressions (1) are now highlighted using `nord10` as
foreground instead of `nord13` as background and `nord0` as foreground.
References:
(1) https://cmake.org/cmake/help/latest/manual/cmake-generator-expressions.7.html
GH-137
|
|
Added support for Haskell syntax through the
neovimhaskell/haskell-vim (1) 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`.
References:
(1) https://github.com/neovimhaskell/haskell-vim
GH-104
|
|
|
|
|
|
arcticicestudio/improvement/gh-145-comment-color-brightness
Comment Color Brightness
|
|
-> Please see https://github.com/arcticicestudio/nord/issues/94 for all
details about this design change decision.
Increased the comment color (`nord3`) brightness by 10% from a lightness
level of ~35% to ~45%.
This change also deprecates the comment contrast (1) configuration.
It is not necessary anymore for users to increase the brightness on
their own when the default color has been increased by default.
A deprecation warning will be shown to notify all users who have set a
custom value for the `g:nord_comment_brightness` configuration variable.
References:
(1) https://github.com/arcticicestudio/nord-vim#comment-contrast
GH-145
|
|
GH-145
|
|
Adds Vim 8 terminal highlighting
|
|
|
|
|
|
|
|
|
|
arcticicestudio/improvement/gh-117-airline-tmuxline-compatibility
Improve compatibility of airline with tmuxline.vim plugin
|
|
The "Nord airline.vim" (1) UI plugin theme now includes better support
for the "tmuxline.vim" (2) plugin. Previously text shown in the main
segment of the tmuxline, generated via the `:Tmuxline airline` command,
caused a `bad colour: NONE` error or 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. See GH-11 (3)
which has been used as implementation reference that fixed the same
incompatibility for the "lightline.vim" (4) plugin.
References:
(1) https://github.com/arcticicestudio/nord-vim/blob/develop/autoload/airline/themes/nord.vim
(2) https://github.com/edkolev/tmuxline.vim
(3) https://github.com/arcticicestudio/nord-vim/issues/11
(4) https://github.com/itchyny/lightline.vim
GH-117
|
|
|
|
|
|
arcticicestudio/feature/gh-106-underline-toggle-config
Theme config to globally toggle underlines
|
|
All underlines can be disabled globally with the
"g:nord_underline" config.
GH-106
|
|
Add vimwiki syntax higlighting.
|
|
GH-98
|
|
Match CursorLineNr background to CursorLine
|
|
In term mode the number uses nord4, but in GUI mode nord3 was used
instead. This was not intended and has been changed to match the term
mode style.
GH-100
|
|
A config to allow users to enable background for the line cumber of the
current cursor position. It uses the same color as the current line so
it appears as a uniform background highlighting.
|
|
Bug: "Invisible" DiffText
|
|
The reason is that is might be a bit confusing if removed code is
marked with a greenish color which actually marks added code.
GH-121
|
|
Add support for vim-signature higlighting
|
|
|
|
Highlight Yaml keys
|
|
|
|
Link jsThis highlight to keyword.
|
|
Make single line diffs visible. The old colours was hiding these changes.
|
|
|
|
Fixes StatusLineTerm colors
|
|
|
|
Make the neovim terminal cursor visible when out of terminal mode
|